BARGS
    Preparing search index...

    Type Alias CallablePositionalsParser<P>

    CallablePositionalsParser: <V2, P2 extends readonly unknown[]>(
        parser: Parser<V2, P2>,
    ) => Parser<V2, readonly [...P2, ...P]> & Parser<object, P>

    A Parser that can also be called as a function to merge with another parser. This allows pos.positionals() to work both as:

    • First arg in pipe: used directly as a Parser
    • Later arg in pipe: called as function to merge with incoming Parser

    For positionals, we DON'T intersect values - we just pass through V2.

    Type Parameters

    • P extends readonly unknown[]