Method: UUID#==
- Defined in:
- lib/cast_off/compile/namespace/uuid.rb
#==(other) ⇒ Object Also known as: eql?
Two UUIDs are said to be equal if and only if their (byte-order canonicalized) integer representations are equivallent. Refer RFC4122 for details.
281 282 283 |
# File 'lib/cast_off/compile/namespace/uuid.rb', line 281 def == other to_i == other.to_i end |