logo

Todash 2.4.0

是一个 类型推导 工具库,旨在帮助你快速方便的编写具备类型推导的 TypeScript 代码。


“Tuple” 方法


_.TupleByConcat<tuple1, tuple2>

将 tuple1、tuple2 首尾相接并返回


参数


tuple1 (Tuple): 需要处理的元组1
tuple2 (Tuple): 需要处理的元组2


返回


tuple (Tuple): 返回由 tuple1、tuple2 首尾相接之后的元组


例子


type TupleAfterConcat = _.TupleByConcat<['react', 'angular'], ['vue', 'jquery']>;
// => ['react', 'angular', 'vue', 'jquery']

type TupleAfterConcat = _.TupleByConcat<['vue', 'react','angular'], ['vue', 'jquery']>;
// => ['vue', 'react','angular', 'vue', 'jquery']