(Numbers): Added description of the new values +inf.0, -inf.0 and
[bpt/guile.git] / doc / groupings.alist
1 ;; groupings.alist -*-scheme-*-
2 ;; This file describes interface element groupings.
3 ;; See (scripts scan-api) commentary for more info.
4
5 (
6
7 (C+scheme
8 (description "in both groups `scheme' and `C'") ; should be empty!
9 (grok () (lambda (x)
10 (and (in-group? x 'Scheme)
11 (in-group? x 'C)))))
12
13 (libguile-internal
14 (description "begins with scm_i_")
15 (grok () (lambda (x)
16 (name-prefix? x "scm_i_"))))
17
18 (math
19 (description "math functions")
20 (members $abs $acos $acosh $asin $asinh $atan $atan2 $atanh $cos $cosh
21 $exp $expt $log $sin $sinh $sqrt $tan $tanh))
22
23 (favorite
24 (description "my favorite procs")
25 (grok () (lambda (x)
26 (and (in-group? x 'math) (in-group? x 'Scheme)))))
27
28 ;; Add new grouping descriptions here.
29 )
30
31 ;; groupings.alist ends here