# File lib/facets/more/typecast.rb, line 142
    def cast_from(object)
      return super
    rescue TypeCastException
      return object.to_a if object.respond_to? :to_a
      raise
    end