# File lib/tapkit/control/date_and_time.rb, line 41
                def -( other )
                        case other
                        when Date
                                to_date - other.to_date
                        when ::Date
                                to_date - other
                        else
                                Date.new_with_date((to_date - other))
                        end
                end