Skip to content

pnathan/cl-linq

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cl-linq

A simple queryable interface for tabular datasets.

Examples:

CL-USER> (cl-linq:query :contains 1 '(1 2 3 4))
T
CL-USER> (cl-linq:query :all #'oddp '(1 2 3 ))
NIL
CL-USER> (cl-linq:query :all #'oddp '(1 3 5 ))
T
CL-USER>
CL-USER> (defparameter *people*
          `(((:name . "stephen") (:email . "[email protected]") (:age . 33))
            ((:name . "bob") (:email . "[email protected]") (:age . 49))
            ((:name . "foo") (:email . "[email protected]") (:age . 10))))
*PEOPLE*
CL-USER> (cl-linq:query
          :select '(:name :age)
          :from *people*
          :where #'(lambda (row)
                     (> (cdr (assoc :age row)) 21)))
(("bob" 49) ("stephen" 33))

Bugs

  • group-by appears not to work

Maintainer:

None. This project has algorithmic inefficiencies structurally. If someone wants to take it and run, please do so without worrying about asking for permission.

Contributors:

  • Stephen "deliciousrobots" Goss
  • Paul Nathan

License

LLGPL

About

linq in lisp; data set manipulating done easy

Resources

Stars

Watchers

Forks

Packages

No packages published