UNPKG

rambdax

Version:

Extended version of Rambda - a lightweight, faster alternative to Ramda

14 lines (12 loc) 224 B
import {List} from './List' /** Attach `L1` at the end of `L` @param L to concat with @param L1 to be attached @returns [[List]] @example ```ts ``` */ export type Concat<L extends List, L1 extends List> = [...L, ...L1]