valuesfn
valuesfn is a term used in programming to denote a function that retrieves the collection of values stored in a data structure or produced by a value-producing process. The exact meaning varies by context, but it commonly refers to a function that, given a container such as a map, dictionary, record, or object, returns the sequence of its values, omitting the keys.
Typical characteristics include that valuesfn is usually a pure function and returns a collection such as
Variants and related concepts include keysfn, which returns the keys of a container, and entriesfn, which returns
Examples of usage are common in pseudocode and language libraries: valuesfn({ "a": 1, "b": 2 }) might
See also: keysfn, entriesfn, map, reduce, collection utilities.