Coder Social home page Coder Social logo

assoc-utils's People

Contributors

fukamachi avatar kilianmh avatar knobo avatar t-cool avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

Forkers

kilianmh

assoc-utils's Issues

Use default value in setf-expander

(loop 
   for i in *long-list*
   with sum = nil
   do (if (assoc-utils:aget sum i)
          (incf (assoc-utils:aget sum i))
          (push (cons i 0)  sum))
   finally (return sum))

Would be nicer to be able to write

(loop 
   for i in *long-list*
   with sum = nil
   do (incf (assoc-utils:aget sum i 0))
   finally (return sum))

Suggestion: Use stable-sort in alist=

It is common practice to have multiple entries in an alist with the same key. E.g. CLtL2 explicitly touts this as a feature:

Moreover, because the searching function assoc searches the a-list in order, new entries can ``shadow'' old entries

The order of keys should thus be maintained in alist=, otherwise this function might e.g. return non-nil for '(("foo" . 1) ("foo" . 2)) and '(("foo" . 2) ("foo" . 1)).

delete-from-alistf can't delete first element in alist

CL-USER> (defparameter *a* '((:a . 1) (:b . 2)))
*A*
CL-USER> (assoc-utils:delete-from-alist *a* :a)
((:B . 2))
CL-USER> *a*
((:A . 1) (:B . 2))
CL-USER> (assoc-utils:delete-from-alistf *a* :a)
((:B . 2))
CL-USER> *a*
((:B . 2))
CL-USER> 

In Mac, SBCL 1.4.6

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.