class LuckyInflector::Inflector::Inflections::Uncountables

Defined in:

lucky_inflector/inflector/inflections.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new #

[View source]

Instance Method Detail

def <<(*word) #

[View source]
def add(words) #

[View source]
def delete(entry) #
Description copied from class Array(String)

Removes all items from self that are equal to obj.

Returns the last found element that was equal to obj, if any, or nil if not found.

a = ["a", "b", "b", "b", "c"]
a.delete("b") # => "b"
a             # => ["a", "c"]

a.delete("x") # => nil
a             # => ["a", "c"]

[View source]
def uncountable?(str) #

[View source]