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
In response to #179, I checked the support status and performance of some other functions. The (incomplete) list is shown below.
^(::FixedPoint, ::Integer)
N0f8(0.8)^3 != N0f8(64/125)
bitstring
FixedPoint
big
big(::FixedPoint)
rationalize(::FixedPoint)
big()
rationalize()
clamp
copysign(x::Fixed, y)
flipsign(x::Fixed, y)
fma
muladd
rationalize
rem
div
cld
mod
rem2pi
mod2pi
signbit
Normed
abs(::Normed)
copysign(x::Normed, y)
flipsign(x::Normed, y)
maxintfloat (maxintfixed and minintfixed?)
maxintfloat
maxintfixed
minintfixed
parse and tryparse for fixed point numbers with suffix
parse
tryparse
bit shift operators (Issue [Feature Request] shifting with << and >> #250)
numerator and denominator
numerator
denominator
widemul
The text was updated successfully, but these errors were encountered:
Ah, I forgot widemul.
Sorry, something went wrong.
No branches or pull requests
In response to #179, I checked the support status and performance of some other functions. The (incomplete) list is shown below.
To be supported
^(::FixedPoint, ::Integer)
for more accuracyN0f8(0.8)^3 != N0f8(64/125)
bitstring
(PR Addbitstring
forFixedPoint
numbers #195)big
(Issue Addingbig(::FixedPoint)
andrationalize(::FixedPoint)
#184, PR Addbig()
andrationalize()
forFixedPoint
#186)clamp
(Issue performance on clamp #179, PR Optimizeclamp
#194)copysign(x::Fixed, y)
andflipsign(x::Fixed, y)
for speed performance (PR Specialize sign-related functions #187)fma
andmuladd
rationalize
(Issue Addingbig(::FixedPoint)
andrationalize(::FixedPoint)
#184, PR Addbig()
andrationalize()
forFixedPoint
#186)rem
anddiv
(cld
) (PR Add checked, wrapping and saturating arithmetic for div/cld/fld #226, PR Add checked, wrapping and saturating arithmetic forrem
/mod
#230)rem2pi
andmod2pi
signbit
for speed performance (forNormed
) (PR Specialize sign-related functions #187)To be dropped
abs(::Normed)
specialization is not helpful. (PR Specialize sign-related functions #187)copysign(x::Normed, y)
andflipsign(x::Normed, y)
should be throw error. (PR Specialize sign-related functions #187)TBD
maxintfloat
(maxintfixed
andminintfixed
?)parse
andtryparse
for fixed point numbers with suffixbit shift operators (Issue [Feature Request] shifting with << and >> #250)
numerator
anddenominator
widemul
The text was updated successfully, but these errors were encountered: