Class: ELFTools::LazyArray
- Inherits:
-
SimpleDelegator
- Object
- SimpleDelegator
- ELFTools::LazyArray
- Defined in:
- lib/elftools/lazy_array.rb
Overview
A helper class for ELFTools easy to implement ‘lazy loading’ objects. Mainly used when loading sections, segments, and symbols.
Instance Method Summary collapse
-
#[](i) ⇒ Object
To access elements like a normal array.
-
#initialize(size) {|i| ... } ⇒ LazyArray
constructor
Instantiate a LazyArray object.
Constructor Details
permalink #initialize(size) {|i| ... } ⇒ LazyArray
Instantiate a ELFTools::LazyArray object.
30 31 32 33 |
# File 'lib/elftools/lazy_array.rb', line 30 def initialize(size, &block) super(Array.new(size)) @block = block end |
Instance Method Details
permalink #[](i) ⇒ Object
To access elements like a normal array.
Elements are lazy loaded at the first time access it.
42 43 44 45 46 47 |
# File 'lib/elftools/lazy_array.rb', line 42 def [](i) # XXX: support negative index? return nil unless i.between?(0, __getobj__.size - 1) __getobj__[i] ||= @block.call(i) end |