module Enumerable

def exclude?(object)

collection does not include the object.
The negative of the Enumerable#include?. Returns +true+ if the
def exclude?(object)
  !include?(object)
end