Class: RubySol::Pure::SerializerCache::StringCache

Inherits:
Hash
  • Object
show all
Defined in:
lib/ruby_sol/pure/serializer.rb

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initializeStringCache

Returns a new instance of StringCache.



462
463
464
# File 'lib/ruby_sol/pure/serializer.rb', line 462

def initialize
  @cache_index = 0
end

Instance Method Details

#add_obj(str) ⇒ Object



466
467
468
469
# File 'lib/ruby_sol/pure/serializer.rb', line 466

def add_obj str
  self[str] = @cache_index
  @cache_index += 1
end