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