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
Is your feature request related to a problem? Please describe. Predicate to determine if the integer is 32 bits, unsigned, range [0, 2 ** 32)
Describe the solution you'd like
IMHO no need to check for the range but rather doing comparison like this would suffice:
const isUinteger32 = curry1(val => toUinteger32(val) === val);
Describe alternatives you've considered
Checking for the actual 32bit unsigned range of [0, 2 ** 32)
Additional context
We also need to alias this function as: isUint32
Blocked by toUinteger32
http://speakingjs.com/es5/ch11.html#_ranges_of_integers
The text was updated successfully, but these errors were encountered:
Hey there! Can I give this issue a try?
Sorry, something went wrong.
@rhian-cs sure, have a blast ;]
965147e
No branches or pull requests
Is your feature request related to a problem? Please describe.
Predicate to determine if the integer is 32 bits, unsigned, range [0, 2 ** 32)
Describe the solution you'd like
IMHO no need to check for the range but rather doing comparison like this would suffice:
Describe alternatives you've considered
Checking for the actual 32bit unsigned range of [0, 2 ** 32)
Additional context
We also need to alias this function as: isUint32
Blocked by toUinteger32
http://speakingjs.com/es5/ch11.html#_ranges_of_integers
The text was updated successfully, but these errors were encountered: