class Gammo::XPath::AST::Function::Concat
@!visibility private
Public Instance Methods
evaluate(context)
click to toggle source
# File lib/gammo/xpath/ast/function.rb, line 103 def evaluate(context) string arguments.each_with_object(::String.new) { |argument, s| s << argument.evaluate(context.clone).to_s } end