Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rudolfochrist/clutils
Personal Common Lisp utilities
https://github.com/rudolfochrist/clutils
Last synced: 18 days ago
JSON representation
Personal Common Lisp utilities
- Host: GitHub
- URL: https://github.com/rudolfochrist/clutils
- Owner: rudolfochrist
- License: mit
- Created: 2014-02-09T14:49:36.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2019-08-08T15:08:21.000Z (over 5 years ago)
- Last Synced: 2024-12-05T17:46:53.244Z (about 2 months ago)
- Language: Common Lisp
- Size: 57.6 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
* clutils
My personal Common Lisp utilities.
* Features
** Strings
- /string-trim-whitespace/: trims leading and trailing whitespace
- /string-append/
- /string-join/
- /string-split/
- /string-starts-with-p/: checks for prefix
- /string-ends-with-p/: checks for suffix
- /file-to-strings/: reads in a file and adds each line to the resulting list
- /file-to-string/
- /string-to-file/: supersedes the file at given filespec** Functional
- /compose/
- /partial/
- /flip/: reverses the arguments list of a function
- /partial-right/: partially applies a function from the right** Math
- /average/
- /median/
- /generate-random-numbers/: generates a list of random numbers up to bound
- /primep/: checks for prime numbers (Fermat primality)* License
See [[file:LICENSE][LICENSE]].