class XBee::Address

Public Instance Methods

<=>(other) click to toggle source
# File lib/xbee/address.rb, line 8
def <=>(other)
        to_a <=> other.to_a
end
==(other) click to toggle source
# File lib/xbee/address.rb, line 13
def ==(other)
        to_a == other.to_a
end
to_a() click to toggle source
# File lib/xbee/address.rb, line 18
def to_a
        @bytes
end