Next: , Previous: find-package, Up: Packages


find-all-symbols (Function)

Syntax:
— Function: find-all-symbols string symbols
Arguments and Values:

string—a string designator.

symbols—a list of symbols.

Description:

find-all-symbols searches name that is the same (under string=) as string. A list of all such symbols is returned. Whether or how the list is ordered is implementation-dependent.

Examples:
 (find-all-symbols 'car)
 (CAR)
or (CAR VEHICLES:CAR)
or (VEHICLES:CAR CAR)
 (intern "CAR" (make-package 'temp :use nil))  TEMP::CAR, NIL
 (find-all-symbols 'car)
 (TEMP::CAR CAR)
or (CAR TEMP::CAR)
or (TEMP::CAR CAR VEHICLES:CAR)
or (CAR TEMP::CAR VEHICLES:CAR)
See Also:

find-symbol