/usr/lib/help/assp is in scheme9 2013.11.26-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 | S9 LIB (assp procedure^2 object alist) ==> object | #f
Find the first member X of an alist for which
(procedure^2 object (car X))
holds. When no such member exists, return #F.
(assp char=? #\b '((#\a . 1) (#\b . 2))) ==> (#\b . 2)
|