We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I really like this package, has tons of possibilities with a very good performance, however... Currently arrays only work with numbers
Example: eval("[5,6,7]")(1) = 6 < this already works eval("["A","B","C"]")(1) = "B" < like this
Thanks!
The text was updated successfully, but these errors were encountered:
Yeah the thing is that the notation is not an array, but a matrix (which is numerical).
I think to use an array you'll need to fall back to list, e.g., list("A", "B", "C") may be usable.
list
list("A", "B", "C")
Unfortunately, I think this is not really documented. I'll keep it open as a documentation topic.
Sorry, something went wrong.
Didn't know the list yet. It works perfectly, thanks!
No branches or pull requests
Hi,
I really like this package, has tons of possibilities with a very good performance, however...
Currently arrays only work with numbers
Example:
eval("[5,6,7]")(1) = 6 < this already works
eval("["A","B","C"]")(1) = "B" < like this
Thanks!
The text was updated successfully, but these errors were encountered: