Class: LLVM::User
Direct Known Subclasses
Defined Under Namespace
Classes: OperandCollection
Instance Method Summary collapse
-
#operands ⇒ Object
Returns an Enumerable of the operands in this user.
Methods inherited from Value
#add_attribute, #allocated_type, #allocated_type?, #constant?, #dump, from_ptr, from_ptr_kind, #gep_source_element_type, #gep_source_element_type?, #global_parent, #kind, #name, #name=, #null?, #poison?, #remove_attribute, to_ptr, #to_s, type, #type, #undef?
Methods included from PointerIdentity
Instance Method Details
#operands ⇒ Object
Returns an Enumerable of the operands in this user.
269 270 271 |
# File 'lib/llvm/core/value.rb', line 269 def operands @operand_collection ||= OperandCollection.new(self) end |