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, #constant?, #dump, from_ptr, #name, #name=, #null?, #remove_attribute, to_ptr, #to_s, #type, type, #undefined?
Methods included from PointerIdentity
Instance Method Details
#operands ⇒ Object
Returns an Enumerable of the operands in this user.
213 214 215 |
# File 'lib/llvm/core/value.rb', line 213 def operands @operand_collection ||= OperandCollection.new(self) end |