Sha256: 92201cec1c8e71c8cd82f9895fb9cf6b29a6532e6e9bac641956430dc80cb478
Contents?: true
Size: 204 Bytes
Versions: 8
Compression:
Stored size: 204 Bytes
Contents
class String def start_with_lowercase? first_letter = self[0] first_letter.downcase == first_letter end def include_any?(other_strs) other_strs.any? { |other| include? other } end end
Version data entries
8 entries across 8 versions & 3 rubygems