effect-tree
    Preparing search index...

    Interface Matcher<A, R>

    interface Matcher<A, R> {
        onBranch: (node: A, forest: readonly [Tree<A>, Tree<A>]) => R;
        onLeaf: (node: A) => R;
    }

    Type Parameters

    • A
    • R
    Index

    Properties

    Properties

    onBranch: (node: A, forest: readonly [Tree<A>, Tree<A>]) => R
    onLeaf: (node: A) => R