struct BigDecimal

Included Modules

Defined in:

big.cr
big/big_decimal.cr

Constant Summary

DEFAULT_MAX_DIV_ITERATIONS = 100_u64
TEN = BigInt.new(10)
ZERO = BigInt.new(0)

Constructors

Instance Method Summary

Instance methods inherited from module Comparable(BigDecimal)

<(other : T) <, <=(other : T) <=, <=>(other : T) <=>, ==(other : T) ==, >(other : T) >, >=(other : T) >=

Instance methods inherited from module Comparable(Number)

<(other : T) <, <=(other : T) <=, <=>(other : T) <=>, ==(other : T) ==, >(other : T) >, >=(other : T) >=

Instance methods inherited from struct Number

*(other : Complex)
*(other : BigFloat)
*
, +(other : BigFloat)
+(other : Complex)
+
+
, -(other : Complex)
-(other : BigFloat)
-
, /(other : Complex) /, <=>(other : BigFloat)
<=>(other)
<=>
, ==(other : Complex) ==, abs abs, abs2 abs2, cis cis, clamp(min, max)
clamp(range : Range)
clamp
, divmod(number) divmod, i i, round(digits, base = 10) round, sign sign, significant(digits, base = 10) significant, step(*, to = nil, by = 1)
step(*, to = nil, by = 1, &block)
step
, to_big_f to_big_f, to_c to_c, to_yaml(yaml : YAML::Nodes::Builder) to_yaml, zero? : Bool zero?

Constructor methods inherited from struct Number

zero : self zero

Instance methods inherited from module Comparable(BigFloat)

<(other : T) <, <=(other : T) <=, <=>(other : T) <=>, ==(other : T) ==, >(other : T) >, >=(other : T) >=

Instance methods inherited from module Comparable(Number)

<(other : T) <, <=(other : T) <=, <=>(other : T) <=>, ==(other : T) ==, >(other : T) >, >=(other : T) >=

Instance methods inherited from struct Value

==(other) ==, dup dup

Instance methods inherited from class Object

!=(other) !=, !~(other) !~, ==(other) ==, ===(other : JSON::Any)
===(other : YAML::Any)
===(other)
===
, =~(other) =~, class class, dup dup, hash(hasher)
hash
hash
, inspect(io : IO)
inspect
inspect
, itself itself, not_nil! not_nil!, pretty_inspect(width = 79, newline = "\n", indent = 0) : String pretty_inspect, pretty_print(pp : PrettyPrint) : Nil pretty_print, tap(&block) tap, to_json(io : IO)
to_json
to_json
, to_pretty_json(indent : String = " ")
to_pretty_json(io : IO, indent : String = " ")
to_pretty_json
, to_s
to_s(io : IO)
to_s
, to_yaml(io : IO)
to_yaml
to_yaml
, try(&block) try, unsafe_as(type : T.class) forall T unsafe_as

Constructor methods inherited from class Object

from_json(string_or_io, root : String) : self
from_json(string_or_io) : self
from_json
, from_yaml(string_or_io : String | IO) : self from_yaml

Constructor Detail

def self.new(value : BigInt, scale : UInt64) #

Creates a new BigDecimal from BigInt/UInt64, which matches the internal representation.


[View source]
def self.new(value : Int, scale : Int) #

[View source]
def self.new(str : String) #

Creates a new BigDecimal from a String.

Allows only valid number strings with an optional negative sign.


[View source]
def self.new(value : BigInt) #

[View source]
def self.new(num : Int) #

Creates an new BigDecimal from Int.


[View source]
def self.new(num : Float) #

Creating a BigDecimal from Float.

NOTE Floats are fundamentally less precise than BigDecimals, which makes initialization from them risky.


[View source]
def self.new(num : BigDecimal) #

Returns num. Useful for generic code that does T.new(...) with T being a Number.


[View source]
def self.new #

[View source]

Instance Method Detail

def *(other : BigDecimal) : BigDecimal #

[View source]
def +(other : BigDecimal) : BigDecimal #

[View source]
def -(other : BigDecimal) : BigDecimal #

[View source]
def /(other : BigDecimal) : BigDecimal #

[View source]
def <=>(other : BigDecimal) : Int32 #

[View source]
def <=>(other : Int) #

[View source]
def ==(other : BigDecimal) : Bool #

[View source]
def clone #

[View source]
def div(other : BigDecimal, max_div_iterations = DEFAULT_MAX_DIV_ITERATIONS) : BigDecimal #

Divides self with another BigDecimal, with a optionally configurable max_div_iterations, which defines a maximum number of iterations in case the division is not exact.

BigDecimal(1).div(BigDecimal(2))    # => BigDecimal(@value=5, @scale=2)
BigDecimal(1).div(BigDecimal(3), 5) # => BigDecimal(@value=33333, @scale=5)

[View source]
def hash(hasher) #

[View source]
def normalize_quotient(other : BigDecimal, quotient : BigInt) : BigInt #

Returns the quotient as absolutely negative if self and other have different signs, otherwise returns the quotient.


[View source]
def scale : UInt64 #

[View source]
def scale_to(new_scale : BigDecimal) : BigDecimal #

Scales a BigDecimal to another BigDecimal, so they can be computed easier.


[View source]
def to_big_d #

[View source]
def to_f #

[View source]
def to_i #

Converts to integer. Truncates anything on the right side of the decimal point.


[View source]
def to_s(io : IO) #

[View source]
def to_u #

Converts to unsigned integer. Truncates anything on the right side of the decimal point, converting negative to positive.


[View source]
def value : BigInt #

[View source]