FuncType - v0.8.85
    Preparing search index...

    Interface FunctypeCollection<A, Tag>

    A version of Functype for collection types that need iteration support. Extends FunctypeBase with Iterable protocol but without Extractable.

    interface FunctypeCollection<A, Tag extends string = string> {
        _tag: Tag;
        isEmpty: boolean;
        size: number;
        get head(): undefined | A;
        get headOption(): Option<A>;
        ap<B extends unknown>(ff: Applicative<(value: A) => B>): Applicative<B>;
        contains(value: A): boolean;
        count(p: (x: A) => boolean): number;
        drop(n: number): FunctypeCollection;
        dropRight(n: number): FunctypeCollection;
        dropWhile(p: (a: A) => boolean): FunctypeCollection;
        exists(p: (a: A) => boolean): boolean;
        find(p: (a: A) => boolean): Option<A>;
        flatMap<B extends unknown>(
            f: (value: A) => Iterable<B>,
        ): FunctypeCollection<B, Tag>;
        flatMapAsync<B extends unknown>(
            f: (value: A) => PromiseLike<Iterable<B, any, any>>,
        ): PromiseLike<FunctypeCollection<B, Tag>>;
        flatten<B>(): FunctypeCollection;
        fold<B>(onEmpty: () => B, onValue: (value: A) => B): B;
        foldLeft<B>(z: B): (op: (b: B, a: A) => B) => B;
        foldRight<B>(z: B): (op: (a: A, b: B) => B) => B;
        forEach(f: (a: A) => void): void;
        map<B extends unknown>(f: (value: A) => B): Functor<B>;
        pipe<U extends unknown>(f: (value: A[]) => U): U;
        reduce(f: (b: A, a: A) => A): A;
        reduceRight(f: (b: A, a: A) => A): A;
        serialize(): SerializationMethods<A>;
        toArray<B = A>(): B[];
        toList(): List<A>;
        toSet(): Set<A>;
        toString(): string;
        toValue(): { _tag: Tag; value: A[] };
    }

    Type Parameters

    • A

      The element type of the collection

    • Tag extends string = string

      The type tag for pattern matching

    Hierarchy (View Summary)

    Index

    Properties

    _tag: Tag
    isEmpty: boolean
    size: number

    Accessors

    • get head(): undefined | A

      Gets the first element of the collection.

      Returns undefined | A

    • get headOption(): Option<A>

      Gets the first element wrapped in Option.

      Returns Option<A>

    Methods

    • Parameters

      • value: A

      Returns boolean

    • Counts elements that satisfy the predicate. For single-value containers: returns 0 or 1 For collections: returns the count of matching elements

      Parameters

      • p: (x: A) => boolean

      Returns number

    • Tests whether any element satisfies the predicate. For single-value containers: tests the single value For collections: returns true if any element matches

      Parameters

      • p: (a: A) => boolean

      Returns boolean

    • Finds the first element that satisfies the predicate. For single-value containers: returns Some(value) if predicate matches, None otherwise For collections: returns the first matching element wrapped in Option

      Parameters

      • p: (a: A) => boolean

      Returns Option<A>

    • Type Parameters

      • B extends unknown

      Parameters

      • f: (value: A) => PromiseLike<Iterable<B, any, any>>

      Returns PromiseLike<FunctypeCollection<B, Tag>>

    • Pattern matches over the structure, applying specific handlers for each variant

      Type Parameters

      • B

      Parameters

      • onEmpty: () => B

        Function to apply if the structure is empty or has no value

      • onValue: (value: A) => B

        Function to apply if the structure has a value

      Returns B

      The result of applying the appropriate function

    • Left-associative fold using the provided zero value and operation

      Type Parameters

      • B

      Parameters

      • z: B

        Zero/identity value

      Returns (op: (b: B, a: A) => B) => B

      A function that takes an operation to apply

    • Right-associative fold using the provided zero value and operation

      Type Parameters

      • B

      Parameters

      • z: B

        Zero/identity value

      Returns (op: (a: A, b: B) => B) => B

      A function that takes an operation to apply

    • Applies an effect function to each element. For single-value containers: applies to the value if present For collections: applies to each element

      Parameters

      • f: (a: A) => void

      Returns void

    • Type Parameters

      • B extends unknown

      Parameters

      • f: (value: A) => B

      Returns Functor<B>

    • Pipes the value through the provided function

      Type Parameters

      • U extends unknown

        The return type of the function

      Parameters

      • f: (value: A[]) => U

        The function to apply to the value

      Returns U

      The result of applying the function to the value

    • Parameters

      • f: (b: A, a: A) => A

      Returns A

    • Parameters

      • f: (b: A, a: A) => A

      Returns A

    • Converts the collection to an array.

      Type Parameters

      • B = A

      Returns B[]

    • Returns { _tag: Tag; value: A[] }