class PropertyList::Uid

These are used extensively in files written using NSKeyedArchiver, a serializer for Objective-C objects. The value is the index in parse_result

call-seq:

PropertyList::Uid.new 34

Attributes

uid[R]

Public Class Methods

new(uid) click to toggle source
# File lib/property-list.rb, line 64
def initialize uid
  @uid = uid
end

Public Instance Methods

==(other) click to toggle source
# File lib/property-list.rb, line 70
def == other
  other.is_a?(Uid) and @uid == other.uid
end