Updated on 2026-08-14

This commit is contained in:
Tangem 2020-04-20 20:24:38 +03:00
parent 17174cbde8
commit 19f7fc1e27
3 changed files with 5 additions and 5 deletions

View file

@ -0,0 +1,7 @@
package com.tangem.common.extensions
import java.math.BigDecimal
fun BigDecimal.isZero() : Boolean {
return this.compareTo(BigDecimal.ZERO) == 0
}