@mikuroxina/mini-fn
    Preparing search index...

    Type Alias List<T>

    The list data type with current element and rest list of elements.

    type List<T> = {
        current: () => Option.Option<T>;
        rest: () => List.List<T>;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    current: () => Option.Option<T>

    Type Declaration

    rest: () => List.List<T>

    Type Declaration