node-dextrin - v0.1.0
    Preparing search index...

    DXN ordered-map (@ordered %{ ... }) — order is part of the value's identity, unlike plain map (native JS Map, which preserves insertion order too but where that order isn't part of DXN's own map equality — see equality.cjs's map handling). Wraps an ordered array of [key, value] pairs, mirroring Dextrin.OrderedMap exactly.

    Index
    dxnType: string
    pairs: [unknown, unknown][]
    • Parameters

      • key: unknown

        compared structurally (dxnEquals), not by JS reference.

      Returns unknown

      the associated value, or undefined if absent.

    • Parameters

      • key: unknown

        compared structurally (dxnEquals), not by JS reference.

      Returns boolean

    • Returns Map<unknown, unknown>

      a close native-JS fit — Map preserves insertion order too, so this conversion is lossless (modulo the structural-key-equality caveat map itself already has, see equality.cjs).