Module: BCDice::ArithmeticEvaluator
- Defined in:
- lib/bcdice/arithmetic_evaluator.rb
Class Method Summary collapse
-
.eval(expr, round_type: RoundType::FLOOR) ⇒ Integer
deprecated
Deprecated.
Arithmetic.#eval を利用してください。
Class Method Details
.eval(expr, round_type: RoundType::FLOOR) ⇒ Integer
Deprecated.
Arithmetic.#eval を利用してください。
四則演算を評価する
11 12 13 14 15 |
# File 'lib/bcdice/arithmetic_evaluator.rb', line 11 def eval(expr, round_type: RoundType::FLOOR) return 0 unless expr Arithmetic.eval(expr, round_type) || 0 end |