map:get( $map as map:map, $key as xs:string ) as item()*
Get a value from a map.
Parameters | |
---|---|
map | A map. |
key | A key. |
let $table := map:map() let $_ := map:put($table, "some-key", <info>45683</info>) return map:get($table, "some-key") => <info>45683</info>
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.