From 07a1984a73eca9571271857d45f9c08eb93e3d69 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Mon, 14 Sep 2009 16:14:53 -0500 Subject: [PATCH] Remove bogus file --- word-at,assocs.html | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 word-at,assocs.html diff --git a/word-at,assocs.html b/word-at,assocs.html deleted file mode 100644 index f0be85855a..0000000000 --- a/word-at,assocs.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - at ( key assoc -- value/f ) - - -
at ( key assoc -- value/f )
Factor handbook > The language > Collections > Associative mapping operations > Lookup and querying of assocs
Prev:key? ( key assoc -- ? )
Next:?at ( key assoc -- value/key ? )

Vocabulary
assocs

Inputs and outputs
keyan object
assocan assoc
value/fthe value associated to the key, or f if the key is not present in the assoc


Word description
Looks up the value associated with a key. This word makes no distinction between a missing value and a value set to f; if the difference is important, use at*.

See also
at*, key?, ?at

Definition
USING: kernel ;
IN: assocs
: at ( key assoc -- value/f ) at* drop ; inline

- \ No newline at end of file