( ...elements: Elements )
| 306 | * @category constructors |
| 307 | */ |
| 308 | export const make = <Elements extends readonly [any, ...Array<any>]>( |
| 309 | ...elements: Elements |
| 310 | ): Cons<Elements[number]> => fromIterable(elements) as any |
| 311 | |
| 312 | /** |
| 313 | * Appends the specified element to the end of the `List`, creating a new `Cons`. |
no test coverage detected
searching dependent graphs…