Sha256: 097d598b7caeda6153aa46464a17e6ba6874e220a5b61badd082abbaf0d76d95
Contents?: true
Size: 527 Bytes
Versions: 64
Compression:
Stored size: 527 Bytes
Contents
# encoding: utf-8 require "logstash/namespace" module LogStash class TimestampParserError < StandardError; end class Timestamp include Comparable # TODO (colin) implement in Java def <=>(other) self.time <=> other.time end def eql?(other) self.== other end # TODO (colin) implement in Java def +(other) self.time + other end # TODO (colin) implement in Java def -(value) self.time - (value.is_a?(Timestamp) ? value.time : value) end end end
Version data entries
64 entries across 64 versions & 6 rubygems