Class: Array
- Inherits:
-
Object
- Object
- Array
- Defined in:
- lib/zaphire.rb
Instance Method Summary collapse
Instance Method Details
#delete_last_item(n = 1) ⇒ Object
287 288 289 |
# File 'lib/zaphire.rb', line 287 def delete_last_item(n = 1) take size - n end |
#lastitem ⇒ Object
291 292 293 |
# File 'lib/zaphire.rb', line 291 def lastitem self[-1] end |