While reading arc.arc, I came across what seems like an inconsistency: (def assoc (key al) ...) ;; from line 92
(def alref (al key) ...) ;; from line 99
I'd think that two such closely related functions should have the same syntax. Is there any specific reason why they are reversed?(The only one I could think of off the top of my head is that both are "verb subject object" calls) EDIT: added line numbers to the code |