class Collection::Array

Public Instance Methods

content() click to toggle source
# File lib/collection/array.rb, line 5
def content
  @content ||= ::Array.new
end
last() click to toggle source
# File lib/collection/array.rb, line 9
def last
  content.last
end
length() click to toggle source
# File lib/collection/array.rb, line 13
def length
  count
end
Also aliased as: size
size()
Alias for: length