Go to the first, previous, next, last section, table of contents.


]index

Function: ]index { [keyvals] -> index }
file: 100-C-lists.t
package: muf
status: alpha

The ]index function provides a more concise way of creating a small index than using makeHash followed by some assignments:

root:
[ "a" 'a' "b" 'b' "c" 'c' | ]index
root:
ls
'a'	t
'b'	t
'c'	t
root: #<Index _ 381e615>
ls
"a"	'a'
"b"	'b'
"c"	'c'
root:


Go to the first, previous, next, last section, table of contents.