ts-type-forge
    Preparing search index...

    Type Alias MutableNonEmptyArray<A>

    MutableNonEmptyArray: MutableMinLengthArray<1, A>

    Represents a mutable array that is guaranteed to have at least one element.

    Brand-based alias of MutableMinLengthArray<1, A> — the mutable counterpart of NonEmptyArray. Use MutableNonEmptyTuple instead when a purely structural mutable tuple is needed.

    Type Parameters

    • A

      The type of elements in the array.