Common Lisp Utilities

Open-source Common Lisp projects categorized as Utilities

Common Lisp Utility Projects

  • clavier

    :heavy_check_mark: General purpose validation library for Common Lisp (by mmontone)

  • Project mention: Form validation in Common Lisp | dev.to | 2024-02-28

    (defun validate-all (validators object) "Run all validators in turn. Return two values: the status (boolean), and a list of messages. Allow a keyword validator: :allow-blank. Accepts a blank value. If not blank, validate." ;; I wanted this to be part of clavier, but well. ;; https://github.com/mmontone/clavier/pull/10 (let ((messages nil) (valid t)) (loop for validator in validators if (and (eql :allow-blank validator) (str:blankp object)) return t else do (unless (symbolp validator) (multiple-value-bind (status message) (clavier:validate validator object :error-p nil) (unless status (setf valid nil)) (when message (push message messages))))) (values valid (reverse (uiop:ensure-list messages)))))

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

Common Lisp Utilities related posts

  • Form validation in Common Lisp

    2 projects | dev.to | 28 Feb 2024
  • Favorite user input and validation library?

    5 projects | /r/Common_Lisp | 28 May 2022

Index

Project Stars
1 clavier 17

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com