https://github.com/stylewarning/synonyms
https://github.com/stylewarning/synonyms
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/stylewarning/synonyms
- Owner: stylewarning
- Created: 2023-04-09T22:09:28.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-04-09T22:23:31.000Z (about 3 years ago)
- Last Synced: 2025-08-19T19:10:01.985Z (11 months ago)
- Language: Common Lisp
- Size: 1.95 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
SYNONYMS
========
by Robert Smith
SYNONYMS is a package to provide synonyms to equivalent CL
functionality. It is a library existing for its utilitarian value, but
differs from other utility libraries in that it does not present any
new functionality, algorithms, or data structures to Common Lisp.
SYNONYMS provides synonyms for a variety of functional and stylistic
reasons. It provides synonyms that are
* useful for readability's sake, such as TRUE and FALSE.
* useful for functional programming, such as STRCAT
* useful for particular styles of programming
Not all functionality provided by SYNONYMS are precise duplicates of
the functionality of another symbol in Common Lisp. For example,
NON-ZERO-P, a function useful for functional programming, does not
have a direct synonymous equivalent; it is defined as
(not (zerop n)).
However, this is small enough and close enough to act as a synonym.