Konrad Hinsen wrote:
I am working on some code that uses the array implementation from netCDF
(ucar.ma2). One point I have been stumbling over is the support (or not)
of arrays that have a zero in their shape array and thus have no elements.
It is possible to create such elements using the factory method, and
they seem to be behave just fine. On the other hand, it is not possible
to obtain such an empty array as a subsection of another array, because
the Range constructor insists that 0 <= first <= last. I end up having
lots of special-case checks for empty subsections because in many places
in my code, empty arrays can be produced as a result for limiting cases
of the input parameters.
Is there any reason why Range does not accept last < first, resulting in
an empty array of the right shape?
Konrad.
I will have to look closer as to why these arent allowed. I have also noticed
that generates special-case checks. Can you tell me how you use this and an
example why zero-length arrays are useful to you?