@telostat/prelude - v0.7.0
    Preparing search index...

    Variable ListConst

    List: {
        at: typeof at;
        find: typeof find;
        findIndex: typeof findIndex;
        head: <T>(list: readonly T[]) => Maybe<T>;
        init: <T>(list: readonly T[]) => Maybe<T[]>;
        last: <T>(list: readonly T[]) => Maybe<T>;
        sort: typeof sort;
        sum: (list: readonly number[]) => number;
        tail: <T>(list: readonly T[]) => Maybe<T[]>;
        uncons: <T>(list: readonly T[]) => Maybe<Tuple<T, T[]>>;
    }

    Type Declaration

    • at: typeof at
    • find: typeof find
    • findIndex: typeof findIndex
    • init: <T>(list: readonly T[]) => Maybe<T[]>
    • last: <T>(list: readonly T[]) => Maybe<T>
    • sort: typeof sort
    • sum: (list: readonly number[]) => number
    • tail: <T>(list: readonly T[]) => Maybe<T[]>
    • uncons: <T>(list: readonly T[]) => Maybe<Tuple<T, T[]>>