# File lib/tapkit/control/date_and_time.rb, line 121
                def -( other )
                        case other
                        when Time
                                to_time - other.to_time
                        when ::Time
                                to_time - other
                        else
                                Time.new_with_time((to_time - other))
                        end
                end