Link Search Menu Expand Document

ReadonlyNonEmptyArray overview

Added in v2.2.0


Table of contents


constructor

indexReadonlyNonEmptyArray

Signature

export declare const indexReadonlyNonEmptyArray: <A = never>() => Index<ReadonlyNonEmptyArray<A>, number, A>

Added in v2.2.0

model

ReadonlyNonEmptyArray (interface)

Signature

export interface ReadonlyNonEmptyArray<A> extends ReadonlyArray<A> {
  readonly 0: A
}

Added in v2.2.0