apropos

  1. apropos
  2. Documentation
    1. Apropos API
      1. Usage
      2. apropos
      3. apropos-list
      4. apropos-information-list
      5. apropos-default-base
      6. apropos-default-options
      7. apropos-interning
    2. API Examples
    3. Apropos CSI
      1. Usage
    4. CSI Examples
  3. Usage
  4. Requirements
  5. Bugs and Limitations
  6. Author
  7. Repository
  8. Version history
  9. License

Documentation

An apropos facility for CHICKEN Scheme.

Apropos API

Usage

(import apropos-api)

apropos

[procedure] (apropos PATTERN #!key macros? sort case-insensitive? raw? base split internal? imported?)

Displays information about symbols matching PATTERN in the toplevel environment.

PATTERN
A symbol, string, irregex, irregex-sre, (quote symbol), (quote string). When unquoted symbol or string substring matching is performed. When quoted the string value is taken as an irregex regular expression string for use with search.
MACROS?
Either #t to include macros, or #f to skip them. Default is #f.
CASE-INSENSITIVE?
Either #t to use match case-insensitivity for the PATTERN or #f to be case-sensitive. Default is #f.
SORT
Either #:name for an symbol sort, #:module for an module symbol sort, or #:type for a type+indentifier sort, or #f for unsorted. Default is #:type.
SPLIT
Either #:name for an symbol match, #:module for an module match, or #f for any. Default is #f.
RAW?
Do not strip identifier symbols. The default is #f. Use #:raw? #t when apropos is suspected of hiding information.
BASE
fixnum in 2..16. The default is 10. BASE is used to convert a number to a string PATTERN. Of dubious utility. But can fix the situation of entering a hex number, say #x1c, for the pattern using the REPL and matching against 28!
INTERNAL?
Either #t to include internal "modules", or #f to ignore. The default is #f.
IMPORTED?
Either #t for only imported identifiers, or #f for global symbols. The default is #f.

apropos-list

[procedure] (apropos-list PATTERN #!key macros? case-insensitive? raw? base internal? imported?) => list

Like apropos but returns an, unsorted, list of matching symbols.

apropos-information-list

[procedure] (apropos-information-list PATTERN #!key macros? sort case-insensitive? raw? base internal? imported?) => list

Like apropos but returns a list key'ed by (MODULE . NAME).

MODULE is the module symbol or || for the null module.

NAME is the base symbol.

The associated information is either:

'macro
'keyword
'variable
'procedure
'(procedure . <lambda-list-specification>)
'(procedure . <core procedure name>)

apropos-default-base

[parameter] (apropos-default-base [BASE]) -> fixnum

BASE is a fixnum in [2 16], default 10.

apropos-default-options

[parameter] (apropos-default-options [OPTIONS]) -> list

OPTIONS is an apropos #!key argument list, default '().

apropos-interning

[parameter] (apropos-interning [FLAG]) -> boolean

Use string->symbol - #t - or string->uninterned-symbol - #f, default #t.

API Examples

> (apropos 'print)
flonum-print-precision                     procedure tmp
fprintf                                    procedure (port fstr . args)
max-symbol-printname-length  symbol-utils  procedure (syms)
pretty-print                               procedure (obj . opt)
pretty-print-expand*         expand-full   procedure (form . tmp)
pretty-print-width                         procedure args
print                                      procedure args
print*                                     procedure args
print-call-chain                           procedure tmp
print-error-message                        procedure (ex . args)
printf                                     procedure (fstr . args)
sprintf                                    procedure (fstr . args)
symbol-printname-details     symbol-utils  procedure (sym)
symbol-printname-length      symbol-utils  procedure (sym)
symbol-printname<?           symbol-utils  procedure (x y)
symbol-printname=?           symbol-utils  procedure (x y)
char-set:printing                          variable
> (pp (apropos-list 'print))
((expand-full#pretty-print-expand*
  symbol-utils#max-symbol-printname-length
  symbol-utils#symbol-printname-length
  print-error-message
  print-call-chain
  sprintf
  symbol-utils#symbol-printname-details
  printf
  print*
  char-set:printing
  print
  fprintf
  symbol-utils#symbol-printname=?
  symbol-utils#symbol-printname<?
  pretty-print
  flonum-print-precision
  pretty-print-width))
> (pp (apropos-information-list 'print))
((((||: . flonum-print-precision) procedure . tmp)
 ((||: . fprintf) procedure port fstr . args)
 ((symbol-utils . max-symbol-printname-length) procedure syms)
 ((||: . pretty-print) procedure obj . opt)
 ((expand-full . pretty-print-expand*) procedure form . tmp)
 ((||: . pretty-print-width) procedure . args)
 ((||: . print) procedure . args)
 ((||: . print*) procedure . args)
 ((||: . print-call-chain) procedure . tmp)
 ((||: . print-error-message) procedure ex . args)
 ((||: . printf) procedure fstr . args)
 ((||: . sprintf) procedure fstr . args)
 ((symbol-utils . symbol-printname-details) procedure sym)
 ((symbol-utils . symbol-printname-length) procedure sym)
 ((symbol-utils . symbol-printname<?) procedure x y)
 ((symbol-utils . symbol-printname=?) procedure x y)
 ((||: . char-set:printing) . variable)))
> (apropos 'print)
printer:                                     keyword
flonum-print-precision                       procedure tmp
fprintf                                      procedure (port fstr . args)
max-symbol-printname-length    symbol-utils  procedure (syms)
pretty-print                                 procedure (obj . opt)
pretty-print-expand*           expand-full   procedure (form . tmp)
pretty-print-width                           procedure args
print                                        procedure args
print*                                       procedure args
print-call-chain                             procedure tmp
print-error-message                          procedure (ex . args)
printf                                       procedure (fstr . args)
sprintf                                      procedure (fstr . args)
symbol-printname-details       symbol-utils  procedure (sym)
symbol-printname-length        symbol-utils  procedure (sym)
symbol-printname<?             symbol-utils  procedure (x y)
symbol-printname=?             symbol-utils  procedure (x y)
##sys#print                                  procedure (x readable port)
##sys#print-length-limit                     procedure args
##sys#print-to-string                        procedure (xs)
##sys#really-print-call-chain                procedure (port chain header)
##sys#register-record-printer                procedure (type proc)
##sys#repl-print-hook                        procedure (x port)
##sys#user-print-hook                        procedure (x readable port)
##sys#with-print-length-limit                procedure (limit thunk)
char-set:printing                            variable
##sys#record-printers                        variable
##sys#repl-print-length-limit                variable

Apropos CSI

Usage

(import apropos-csi)

A csi toplevel-command is added when the apropos-csi extension is loaded by the interpreter, a.

,a PATTERN OPTION ...

OPTION is interpreted as:

help
short-circuit long-form help
mac[ros]
#:macros? #t
sort [name|module|type|#f]
#:sort #:name|#:module|#:type|#f ; default is #:type
split [name|module|#f]
#:split #:name|#:module|#f
case-insensitve|ci
#:case-insensitive? #t
base 2..16
#:base 2..16
internal
#:internal #t

CSI Examples

#;1> ,a print macros sort name
char-set:printing                            variable
define-record-printer                        macro
flonum-print-precision                       procedure tmp
fprintf                                      procedure (port fstr . args)
max-symbol-printname-length    symbol-utils  procedure (syms)
pretty-print                                 procedure (obj . opt)
  ...
##sys#register-record-printer                procedure (type proc)
##sys#repl-print-hook                        procedure (x port)
##sys#repl-print-length-limit                variable
##sys#user-print-hook                        procedure (x readable port)
##sys#with-print-length-limit                procedure (limit thunk)
#;1> ,a '"w.*e" macros
when                                         macro
bitwise-and                                  procedure xs
bitwise-ior                                  procedure xs
bitwise-not                                  procedure (x)
bitwise-xor                                  procedure xs
call-with-current-continuation               procedure (proc)
  ...
write-string                                 procedure (s . more)
char-set:lower-case                          variable
char-set:whitespace                          variable
#;1> ,a '(: (* any)) macros sort name
*                                                           procedure C_times
  ... 1600 lines + ...
##sys#write-char/port                                       procedure (c port)

Usage

(import apropos)

Requirements

srfi-1 utf8 check-errors symbol-utils string-utils

test test-utils

Bugs and Limitations

Author

Kon Lovett

Repository

This egg is hosted on the CHICKEN Subversion repository:

https://anonymous@code.call-cc.org/svn/chicken-eggs/release/5/apropos

If you want to check out the source code repository of this egg and you are not familiar with Subversion, see this page.

Version history

3.9.1
Slightly faster.
3.9.0
Handle "internal" modules as excluded-modules; see the symbol-access module.
3.8.4
Treat "chicken.internal" as internal. Fix no internal module skip when split name.
3.8.3
Fix help imported option entry.
3.8.2
Types for environment access.
3.8.1
Cache symbol table size during check.
3.8.0
Add symbol-table-access cursor-fold. Performance improvement.
3.7.2
Use inline.
3.7.1
Support (do not fault) weak-pairs.
3.7.0
Require utf8 egg.
3.6.2
Add types for apropos-api module. Include duplicate macro symbols.
3.6.1
Remove keyword string-form padding, Add types for undocumented modules.
3.6.0
Update CSI:Help.
3.5.1
Add tests, strict typing, fix duplicate deletion.
3.5.0
Add #:imported? apropos argument. Remove duplicate macro symbols.
3.4.0
Extend matcher generation.
3.3.5
Name split from left.
3.3.4
Require later dependency version.
3.3.3
New test runner.
3.3.2
Add toplevel module symbol parameter.
3.3.1
Fix keyword print.
3.3.0
Added internal symbol references.
3.2.3
Removed qualified symbol references.
3.2.2
Split symbol table routines into separate modules.
3.2.1
Improve symbol cursor api.
3.2.0
Add symbol-table-access module.
3.1.2
Add dependency.
3.1.1
Fix csi command-line reading.
3.1.0
Add apropos-api & apropos-csi. Add apropos-default-base, check-apropos-number-base, apropos-sort-key?, check-apropos-sort-key, & error-apropos-sort-key.
3.0.0
CHICKEN 5 release.

License

Copyright (C) 2009-2024 Kon Lovett. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the Software), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ASIS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.