You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we follow the gethash example, in (incf (gethash 1 x 0)) the 0 default value is evaluated and possibly discarded if the hash table already has a value. I assume that modifying accesses with a default would need to work the same way in order to maintain the semantics of "the place should look the same no matter if we read or write from it".
Currently it's not possible to run
because the initial value is
NIL
, which can't be incremented.How about allowing this here?
The text was updated successfully, but these errors were encountered: