Saxonberg Server API
    Preparing search index...

    Interface TransformNode

    Chain transforms — descend / ascend operators.

    • :i shallow inventory / detail-children — one container level down (no via) or one detail level down (via set).

    • :I deep inventory — every Stuff in the contents subtree (no via), or every detail descendant from the current tip (via set).

    • :e shallow environment — one container level up (no via) or one detail level up (via set).

    • :E root environment — walk to the topmost containing Stuff (no via) or pop the entire detail path (via set).

    • :b bulk — keep the holder Stuff on the target field and stamp via.bulk = { affordance: 'interior' } when it's a Bulkable interior holder; drop it otherwise (capability-gated, like :i).

    Lower-case forms are single-step; upper-case forms are the deep / root counterparts. Case is preserved through the lexer's transformLetter token. :B is unallocated (a bare B lowercases to a 'b' keyword filter).

    interface TransformNode {
        kind: "transform";
        transform: "e" | "i" | "b" | "I" | "E";
    }
    Index

    Properties

    Properties

    kind: "transform"
    transform: "e" | "i" | "b" | "I" | "E"