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
We have started writing some number and vector validators as individual functions.
We want to convert the existing validators to become "fluent", so that:
We also want to make them as "core" feature, i.e. users don't have to include any other headers.
List of changes:
isBetween(n, a, b)
valueOf(n).isBetween(a, b)
eachElementIsBetween(v, a, b)
eachElementOf(v).isBetween(a, b)
elementsAreAscending(v)
elementsOf(v).areAscending()
elementsAreDescending(v)
elementsOf(v).areDescending()
elementsAreNonAscending(v)
elementsOf(v).areNonAscending()
elementsAreNonDescending(v)
elementsOf(v).areNonDescending()
elementsAreUnique(v)
elementsOf(v).areUnique()
The text was updated successfully, but these errors were encountered:
fushar
No branches or pull requests
We have started writing some number and vector validators as individual functions.
We want to convert the existing validators to become "fluent", so that:
We also want to make them as "core" feature, i.e. users don't have to include any other headers.
List of changes:
isBetween(n, a, b)
valueOf(n).isBetween(a, b)
eachElementIsBetween(v, a, b)
eachElementOf(v).isBetween(a, b)
elementsAreAscending(v)
elementsOf(v).areAscending()
elementsAreDescending(v)
elementsOf(v).areDescending()
elementsAreNonAscending(v)
elementsOf(v).areNonAscending()
elementsAreNonDescending(v)
elementsOf(v).areNonDescending()
elementsAreUnique(v)
elementsOf(v).areUnique()
The text was updated successfully, but these errors were encountered: