Package: effect
Module: Array
Get all but the first element of a NonEmptyReadonlyArray.
Example
import { Array } from "effect"
const result = Array.tailNonEmpty([1, 2, 3, 4])
console.log(result) // [2, 3, 4]
Signature
declare const tailNonEmpty: <A>(self: NonEmptyReadonlyArray<A>) => Array<A>
Since v2.0.0