MutableArithmetics.jl
MutableArithmetics.jl copied to clipboard
Documentation is generally missing
And the remaining one (in README) can be in subtle ways not exactly correct:
README says
The
MA.operate!!(op::Function, x, args...)redirects toop(x, args...)ifxis not mutable or if the result of the operation cannot be stored inx. Otherwise, it redirects toMA.operate!(op, x, args...).
but actually it redirects only to MA.operate(op, x, args...).
As for the future I'd be great if a tutorial page on implementing e.g. MA for Rationals is provided