# File lib/ice_cube/time_util.rb, line 306
      def clear_below(type)
        type = :day if type == :wday
        CLEAR_ORDER.each do |ptype|
          break if ptype == type
          send "clear_#{ptype}""clear_#{ptype}"
        end
      end