If I have an array a:
a[a.length]returnsnil. Good.a[a.length, x]returns[]. Good.a[a.length+x, y]returnsnil. Inconsistent with 2.
While this behavior is documented, it seems odd.
Can anybody explain the reasons behind this design?
|
If I have an array a:
While this behavior is documented, it seems odd. Can anybody explain the reasons behind this design? |
||||
|
|
Consider this
So Where as It may help to think of the slice points as being between the elements, rather than the elements themselves. |
|||||||||||||||||
|
|
Look to your friendly Lispy languages for the answer. The philosophy you're looking for began with languages whose specialty was LISt Processing. For instance, here's one way of creating lists in Haskell:
This is called cons-ing, for 'constructing' a list. If the bulb hasn't gone off yet, consider this: an array is created by adding elements to an empty list, not to 'nil'. |
||||
|
|