Currently it's not possible to run ``` (incf (accesses o (1 :type array)) 15) ``` because the initial value is `NIL`, which can't be incremented. How about allowing this here? ``` (incf (accesses o (1 :type array :default 0)) 15) ```
Currently it's not possible to run
because the initial value is
NIL, which can't be incremented.How about allowing this here?