Flowdock
method

send

Importance_0
v2_4_6 - Show latest stable - 0 notes - Class: REXML::Functions
send(name, *args) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

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
Register or log in to add new notes.