symengine / SymEngine.jl

Julia wrappers of SymEngine
MIT License
192 stars 43 forks source link

Add missing kwargs to `round` #247

Closed wildart closed 2 years ago

isuruf commented 2 years ago

Thanks @wildart for the PR. Can you explain why this is needed and also a small test?

wildart commented 2 years ago

I need to round a number after converting it with N function, e.g. round(N(x); digits = 2). This doesn't work because of missing kwargs in round override.

isuruf commented 2 years ago

Thanks