Class: BCDice::Arithmetic::Node::Parenthesis
- Inherits:
-
Object
- Object
- BCDice::Arithmetic::Node::Parenthesis
- Defined in:
- lib/bcdice/arithmetic/node.rb
Overview
カッコで式をまとめるノード
Instance Method Summary collapse
-
#eval(round_type) ⇒ Integer
評価結果.
-
#initialize(expr) ⇒ Parenthesis
constructor
A new instance of Parenthesis.
-
#output ⇒ String
メッセージへの出力.
-
#s_exp ⇒ String
S式.
Constructor Details
#initialize(expr) ⇒ Parenthesis
Returns a new instance of Parenthesis.
184 185 186 |
# File 'lib/bcdice/arithmetic/node.rb', line 184 def initialize(expr) @expr = expr end |
Instance Method Details
#eval(round_type) ⇒ Integer
Returns 評価結果.
190 191 192 |
# File 'lib/bcdice/arithmetic/node.rb', line 190 def eval(round_type) @expr.eval(round_type) end |
#output ⇒ String
Returns メッセージへの出力.
195 196 197 |
# File 'lib/bcdice/arithmetic/node.rb', line 195 def output "(#{@expr.output})" end |
#s_exp ⇒ String
Returns S式.
200 201 202 |
# File 'lib/bcdice/arithmetic/node.rb', line 200 def s_exp "(Parenthesis #{@expr.s_exp})" end |