There are some use cases when one wants to check if an array or a hash has exactly one element. I propose Array#single? and Hash#single? that checks for such cases and returns either true or false. This is an analogy from the empty? method on the respective class.
When creating an inflectional form out of an array:
a=["object1","object2"]"There #{a.single?"is":"are"}#{a.length}#{a.single??"object":"objects"}."# => "There are 2 objects."
When checking if all elements of the array are the same:
Passes each element of the collection to the given block. The method returns true if the block returns true exactly once. If the block is not given, one?
will return true only if exactly one of the collection members is true.