class Bytewise::Ast::Operators::SmallerThan

Public Instance Methods

evaluate(before, after) click to toggle source
# File lib/brace_markup/ast/operators/smaller_than.rb, line 4
def evaluate(before, after)
  before < after
end