brepjs API Reference
    Preparing search index...

    Interface ResultPipeline<T, E>

    A chainable pipeline that short-circuits on the first Err.

    interface ResultPipeline<T, E> {
        result: Result<T, E>;
        then<U>(fn: (value: T) => Result<U, E>): ResultPipeline<U, E>;
    }

    Type Parameters

    • T
    • E
    Index

    Properties

    Methods

    Properties

    result: Result<T, E>

    Extract the final Result.

    Methods