class SimpleUUID::UUID

Public Instance Methods

<=(other) click to toggle source
  # File lib/cassandra/mock.rb
6 def <=(other)
7   (self <=> other) <= 0
8 end
>=(other) click to toggle source
  # File lib/cassandra/mock.rb
2 def >=(other)
3   (self <=> other) >= 0
4 end