Loading

}

maps

Closes a currently open map and pushes it onto the stack.

The } function pops from the stack the elements (key/value pairs) of the map up to the first mark. The marks are consumed.

} is available since version 1.0.0.

See also

Signatures

Examples

{ 'key1' 42 'key2' 'value2' 'key3' 'value3' } MARK 'key1' 42 'key2' 'value2' 'key3' 'value3' } // Less readable. [ 'key1' 42 'key2' 'value2' 'key3' 'value3' } // A list start is also a mark. Far less readable.