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