MCPcopy
hub / github.com/shopspring/decimal / LessThan

Method LessThan

decimal.go:1344–1346  ·  view source on GitHub ↗

LessThan (LT) returns true when d is less than d2.

(d2 Decimal)

Source from the content-addressed store, hash-verified

1342
1343// LessThan (LT) returns true when d is less than d2.
1344func (d Decimal) LessThan(d2 Decimal) bool {
1345 return d.Cmp(d2) == -1
1346}
1347
1348// LessThanOrEqual (LTE) returns true when d is less than or equal to d2.
1349func (d Decimal) LessThanOrEqual(d2 Decimal) bool {

Callers 4

SinMethod · 0.95
CosMethod · 0.95
TanMethod · 0.95
TestDecimal_EqualitiesFunction · 0.80

Calls 1

CmpMethod · 0.95

Tested by 1

TestDecimal_EqualitiesFunction · 0.64