| The table constructor should accept values. I'd like to be able to write (table 'x 1 'y 2)
This is practical in lots of situations. Let's say you have a list of alternating keys and values from somewhere. You can easily turn that into a hash table with (apply table keys-and-values)
By the way, is there a reason why the above apply could not be written like this? (table . keys-and-values)
|