Class: LLVM::User::OperandCollection
- Inherits:
-
Object
- Object
- LLVM::User::OperandCollection
- Includes:
- Enumerable
- Defined in:
- lib/llvm/core/value.rb
Instance Method Summary collapse
-
#[](i) ⇒ Object
Get a reference to an operand by index.
-
#[]=(i, v) ⇒ Object
Set or replace an operand by index.
-
#each ⇒ Object
Iterates through each operand in the collection.
-
#initialize(user) ⇒ OperandCollection
constructor
A new instance of OperandCollection.
-
#size ⇒ Object
Returns the number of operands in the collection.
Constructor Details
#initialize(user) ⇒ OperandCollection
Returns a new instance of OperandCollection.
221 222 223 |
# File 'lib/llvm/core/value.rb', line 221 def initialize(user) @user = user end |
Instance Method Details
#[](i) ⇒ Object
Get a reference to an operand by index.
226 227 228 229 |
# File 'lib/llvm/core/value.rb', line 226 def [](i) ptr = C.get_operand(@user, i) Value.from_ptr(ptr) unless ptr.null? end |
#[]=(i, v) ⇒ Object
Set or replace an operand by index.
232 233 234 |
# File 'lib/llvm/core/value.rb', line 232 def []=(i, v) C.set_operand(@user, i, v) end |
#each ⇒ Object
Iterates through each operand in the collection.
242 243 244 245 246 |
# File 'lib/llvm/core/value.rb', line 242 def each return to_enum :each unless block_given? 0.upto(size - 1) { |i| yield self[i] } self end |
#size ⇒ Object
Returns the number of operands in the collection.
237 238 239 |
# File 'lib/llvm/core/value.rb', line 237 def size C.get_num_operands(@user) end |