Saxonberg Server API
    Preparing search index...

    Interface SublistNode

    A single sublist: a base chain plus any number of right-hand chains to subtract. Set difference is left-associative — A - B - C = (A - B) - C, modeled by storing B and C in subtract in order.

    interface SublistNode {
        base: ChainNode;
        kind: "sublist";
        subtract: ChainNode[];
    }
    Index

    Properties

    Properties

    base: ChainNode
    kind: "sublist"
    subtract: ChainNode[]