Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/denouse/use/array/split.ts>Sliceable

Util functions for Deno
Latest
interface Sliceable
import { type Sliceable } from "https://deno.land/x/denouse@v0.0.12/use/array/split.ts";

Properties

length: number

Methods

filter<T>(predicate: (
value: T,
index: number,
array: T[],
) => value is T
): Sliceable<T>
slice(start?: number, end?: number): Sliceable<T>