class HMap::HMapBucketStr

hmap bucket

Attributes

key[R]
perfix[R]
suffix[R]

Public Class Methods

new(key, perfix, suffix) click to toggle source
# File lib/cocoapods-hmap/hmap_reader.rb, line 8
def initialize(key, perfix, suffix)
  @key = key
  @perfix = perfix
  @suffix = suffix
end

Public Instance Methods

description() click to toggle source
# File lib/cocoapods-hmap/hmap_reader.rb, line 14
    def description
      <<-DESC
        Key #{@key} -> Prefix #{@perfix}, Suffix #{@suffix}
      DESC
    end