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
In the current implementation of the stdArray it starts at 1 instead of 0, however in vba and javascript the array starts at 0 is this a planned design decision or is it designed to be that way?
It is fine that the array starts a 1.
However it should be mentioned that it starts at 1 instead of zero I haven't read any info which says that it starts at 1.
Maybe you should mention it somewhere
But it would be nicer if it use 0 as start point for the following reason that it is easier to migrate existing vba code without this lib. However that would break backwards compatibility with existing users of the lib
However it should be mentioned that it starts at 1 instead of zero I haven't read any info which says that it starts at 1.
Maybe you should mention it somewhere
Yes the documentation for stdArray is currently not written. However it is present in both the tests and the code.
But it would be nicer if it use 0 as start point for the following reason that it is easier to migrate existing vba code without this lib.
Indeed, we can make a global option on stdArray for defaultBase, similar to what we do for stdLambda 's function lookup.
Description
In the current implementation of the stdArray it starts at 1 instead of 0, however in vba and javascript the array starts at 0 is this a planned design decision or is it designed to be that way?
Example
Error
Runtime error: 9
Index out of range
Expectation
stdArray starts at 0
The text was updated successfully, but these errors were encountered: