Class: Rexle::Elements
Instance Method Summary collapse
- #[](raw_i) ⇒ Object
- #each(&blk) ⇒ Object
- #empty? ⇒ Boolean
- #index(e = nil, &blk) ⇒ Object
-
#initialize(elements = []) ⇒ Elements
constructor
A new instance of Elements.
- #last ⇒ Object
- #length ⇒ Object
- #to_a ⇒ Object
Constructor Details
#initialize(elements = []) ⇒ Elements
Returns a new instance of Elements.
1408 1409 1410 1411 |
# File 'lib/rexle.rb', line 1408 def initialize(elements=[]) super() @elements = elements end |
Instance Method Details
#[](raw_i) ⇒ Object
1413 1414 1415 1416 1417 1418 |
# File 'lib/rexle.rb', line 1413 def [](raw_i) raise 'Rexle::Elements index (-1) must be >= 1' unless raw_i > 0 i = raw_i - 1 @elements[i] end |
#each(&blk) ⇒ Object
1420 |
# File 'lib/rexle.rb', line 1420 def each(&blk) @elements.each(&blk) end |
#empty? ⇒ Boolean
1421 |
# File 'lib/rexle.rb', line 1421 def empty?() @elements.empty? end |
#index(e = nil, &blk) ⇒ Object
1423 1424 1425 1426 1427 1428 1429 1430 |
# File 'lib/rexle.rb', line 1423 def index(e=nil, &blk) if block_given? then @elements.index(&blk) else @elements.index e end end |
#last ⇒ Object
1432 |
# File 'lib/rexle.rb', line 1432 def last() @elements.last end |
#length ⇒ Object
1433 |
# File 'lib/rexle.rb', line 1433 def length() @elements.length end |
#to_a ⇒ Object
1434 |
# File 'lib/rexle.rb', line 1434 def to_a() @elements end |