Interface StatefulBwd1<S, C>

    Single-source bwd result: a scalar update (or SKIP) plus the complement.

    interface StatefulBwd1<S, C> {
        complement: C;
        update: typeof SKIP | S;
    }

    Type Parameters

    • S
    • C
    Index

    Properties

    Properties

    complement: C
    update: typeof SKIP | S