Method: REXML::Element#instructions

Defined in:
lib/rexml/element.rb

#instructionsObject

Get an array of all Instruction children. IMMUTABLE



680
681
682
# File 'lib/rexml/element.rb', line 680

def instructions
  find_all { |child| child.kind_of? Instruction }.freeze
end