method
send
send(name, *args)
public
Hide source
# File lib/rexml/functions.rb, line 411 def Functions::send(name, *args) if @@available_functions[name.to_sym] super else # TODO: Maybe, this is not XPath spec behavior. # This behavior must be reconsidered. XPath.match(@@context[:node], name.to_s) end end