macoolka-collection
Version:
`macoolka-collection` Define Data Collection Interface.
5 lines (4 loc) • 342 B
TypeScript
import { Collection } from '../Collection';
import { URIS } from 'fp-ts/HKT';
declare function test<F extends URIS>({ from, size, empty, getiterator, head, tail, takeLeft, takeLeftWhile, takeLeftUntil, takeRight, skipLeft, skipLeftWhile, skipLeftUntil, skipRight, splitAt, spanLeft, clear, slice }: Collection<F>): void;
export default test;