An open API service indexing awesome lists of open source software.

https://github.com/spagreeks/decimals.jl


https://github.com/spagreeks/decimals.jl

bigdecimal decimals julia julia-language

Last synced: 10 months ago
JSON representation

Awesome Lists containing this project

README

          

# Decimals

## Description
Decimal for Julia, like Java BigDecimal

## Usage
```julia
d1 = d"3.0"
d2 = d"-3E-10"
Decimal(-3, -10)
Decimal("3.0")
d1 + d2
d1 > d2
div(d1, d2, 16, RoundUp)
inv(d1)
```
See more usage in [tests](https://github.com/gfZeng/Decimals.jl/tree/master/test)

## Compares
The package provides the same features with another [Decimals.jl](https://github.com/JuliaMath/Decimals.jl/blob/master/src/Decimals.jl) package. But the implements is more simple, and the use more friendly, like Java BigDecimal.