class WAB::UUID
The UUID
class representing a 128 bit UUID
although values are not validated for conformane to the ISO/IEC specifications.
Attributes
id[R]
to_s[R]
Public Class Methods
new(id)
click to toggle source
Public Instance Methods
==(other)
click to toggle source
# File lib/wab/uuid.rb, line 20 def ==(other) other.is_a?(self.class) && @id == other.id end