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
e.g. general (n to m elements) bounds on arrays:
foo = [n*m uint]
We already have support for the following cases:
[* uint]
[1*1 uint]
[uint]
[? uint]
There are also [+ uint] which is 1 or more but would be trivial to do if the general n*m case is done.
[+ uint]
n*m
The text was updated successfully, but these errors were encountered:
No branches or pull requests
e.g. general (n to m elements) bounds on arrays:
We already have support for the following cases:
[* uint]
(0 or more i.e. no bounds)[1*1 uint]
/[uint]
(i.e. fixed 1 element).[? uint]
(0 or 1 - optional field) (warning: support might only be in some contexts)There are also
[+ uint]
which is 1 or more but would be trivial to do if the generaln*m
case is done.The text was updated successfully, but these errors were encountered: