greaterOrEqualDecStr static method

bool greaterOrEqualDecStr(
  1. String a,
  2. String b
)

Relational greater than or equal operator.

Implementation

static bool greaterOrEqualDecStr(String a, String b) {
  return Decimal.parse(a) >= Decimal.parse(b);
}