mirror of
https://github.com/shopspring/decimal.git
synced 2024-11-22 12:30:49 +01:00
Add Copy func (#123)
* Add Copy method Co-authored-by: habuvo <Sin90is0>
This commit is contained in:
parent
46544472a5
commit
013e52d4e9
2 changed files with 32 additions and 3 deletions
11
decimal.go
11
decimal.go
|
@ -1886,3 +1886,14 @@ func (d Decimal) Tan() Decimal {
|
|||
}
|
||||
return y
|
||||
}
|
||||
|
||||
// Copy makes instance of d with same value and different pointer.
|
||||
func (d Decimal) Copy() Decimal {
|
||||
d.ensureInitialized()
|
||||
return Decimal{
|
||||
value: &(*d.value),
|
||||
exp: d.exp,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -3288,3 +3288,21 @@ func ExampleNewFromFloat() {
|
|||
//0.123123123123123
|
||||
//-10000000000000
|
||||
}
|
||||
|
||||
//For Copy
|
||||
func TestCopy(t *testing.T) {
|
||||
origin := New(1, 0)
|
||||
cpy := origin.Copy()
|
||||
|
||||
if cpy.Cmp(origin) != 0 {
|
||||
t.Error("copy and origin not equal")
|
||||
}
|
||||
|
||||
//change value
|
||||
cpy = cpy.Add(New(1, 0))
|
||||
|
||||
if cpy.Cmp(origin) == 0 {
|
||||
t.Error("copy and origin are equal but expected not")
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue