The map.retrieve() function retrieves a value from $map by a $method get or pick with a $key.
// Functions.@use'map.get.function'as*;@use'map.pick.function'as*;// The `map.retrieve()` function.@functionretrieve($method,$map,$key,$fallback:null){@returnif($method==get,get($map,$key,$fallback),if($method==pick,pick($map,$key...),$mapor$fallback));}