fluffos/docs/efun/mappings/values.md
gesslar 1ad5953549
docs: validate "See Also" references, drop dead ones, document valid_ffi (#1251)
* empty

* docs: validate "See Also" references, drop dead ones, document valid_ffi

Reviewed the "See Also" section of every doc and dropped man-page
cross-references whose target page does not exist (verified against the
driver source, not just the docs tree):

  - errorp, each, opcprof, dump_socket_status, extract, shadowp,
    destruct_env_of, move, inventory_visible, inventory_accessible

These name efuns/applies that no longer exist in FluffOS. keys/values now
point at the `for` construct in place of the defunct `each` efun.

valid_ffi was the one "referenced but undocumented" case: it is a real
master apply (APPLY_VALID_FFI) gating every ffi_load/symbol/prepare/
callback, so it gets a proper apply page rather than having its references
removed. Sidebar regenerated to include it.

The 13 modern markdown-link "See Also" sections were already clean.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-12 01:09:17 -04:00

619 B
Raw Permalink Blame History

title
mappings / values

values

NAME

values() - return an array of the values from the (key, value) pairs
           in a mapping

SYNOPSIS

mixed *values( mapping m );

DESCRIPTION

values() returns an array of values corresponding to the value elements
in the (key, value) pairs stored in the mapping m.

For example, if:

    mapping m;

    m = (["hp" : 35, "sp" : 42, "mass" : 100]);

then

    values(m) == ({35, 42, 100})

Note: the values will be returned in the same order as the  correspond
ing keys.

SEE ALSO

keys(3), for