times method

Expr<T> times(
  1. Decimal n
)

Multiplies by an exactly encoded decimal value.

Implementation

Expr<T> times(Decimal n) => _arithmetic('*', value(n, Codecs.decimal));