Method: UUID#==

Defined in:
lib/reedb/utils/uuids.rb

#==(other) ⇒ Object

Two UUIDs are said to be equal if and only if their (byte-order canonicalized) integer representations are equivalent. Refer RFC4122 for details.



265
266
267
# File 'lib/reedb/utils/uuids.rb', line 265

def == (other)
	to_i == other.to_i
end