pick
The pick
function selects just the given keys out of a dictionary, creating a
new dict
.
$new := pick $myDict "name1" "name2"
The above returns {name1: value1, name2: value2}
The pick
function selects just the given keys out of a dictionary, creating a
new dict
.
$new := pick $myDict "name1" "name2"
The above returns {name1: value1, name2: value2}