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
isinteger
The docstring for isinteger states
Test whether x is numerically equal to some integer.
so StaticInteger should satisfy isinteger(::StatcInteger) == true . Currently,
StaticInteger
isinteger(::StatcInteger) == true
julia> isinteger(StaticInt(1)) ERROR: MethodError: no method matching isinteger(::StaticInt{1}) julia> StaticInt(1) == 1 # numerical equality holds true
The text was updated successfully, but these errors were encountered:
Extend isinteger(::StaticInt) (#93)
isinteger(::StaticInt)
018a834
Extend isinteger(::StaticInt) (#93) (#94)
4ce6735
No branches or pull requests
The docstring for
isinteger
statesso
StaticInteger
should satisfyisinteger(::StatcInteger) == true
. Currently,The text was updated successfully, but these errors were encountered: