class Array

Public Instance Methods

longest() click to toggle source
# File lib/nineteen/eighty/two.rb, line 44
def longest
  self.map { |i| i.length }.max
end