struct

LLVM::InstructionCollection

Inherits Enumerable / Struct / Value / Object

Constructors

new(basic_block : BasicBlock)
Source

Instance methods

each

Must yield this collection's elements to the block.

Source
empty?

Returns true if self does not contain any element.

([] of Int32).empty? # => true
([1]).empty?         # => false
[nil, false].empty?  # => false
  • #present? returns the inverse.
Source