class Wordlist::Operators::BinaryOperator
Binary operator base class.
@since 1.0.0
Attributes
left[R]
The left operand.
@return [Enumerable]
right[R]
The right operand.
@return [Enumerable]
Public Class Methods
new(left,right)
click to toggle source
Initializes the binary operator.
@param [Enumerable] left
The left operand.
@param [Enumerable] right
The right operand.
# File lib/wordlist/operators/binary_operator.rb, line 32 def initialize(left,right) @left = left @right = right end