Sha256: 1099ee6ec5443845987ce5556cfa7ef17262566c840717f58b29fc5af7e349d3

Contents?: true

Size: 840 Bytes

Versions: 100

Compression:

Stored size: 840 Bytes

Contents

module Fox
  #
  # An FXStringDict (string dictionary) object maps one string to another
  # string. The inserted strings are copied when they're inserted.
  #
  class FXStringDict < FXDict
    #
    # Return an initialized FXStringDict instance.
    #
    def initialize; end

    #
    # Insert a new string indexed by key, with given mark flag.
    #
    def insert(key, value, mrk=false); end

    #
    # Replace or insert a new string indexed by key, unless given mark is lower than the existing mark.
    #
    def replace(key, value, mrk=false); end

    #
    # Remove entry indexed by key.
    #
    def remove(key); end

    #
    # Return the entry indexed by _key_, or nil if the key does not exist.
    #
    def find(key); end

    #
    # Return the string at integer position _pos_.
    #
    def data(pos); end
  end
end

Version data entries

100 entries across 100 versions & 1 rubygems

Version Path
fxruby-1.6.48 rdoc-sources/FXStringDict.rb
fxruby-1.6.48-x64-mingw32 rdoc-sources/FXStringDict.rb
fxruby-1.6.48-x64-mingw-ucrt rdoc-sources/FXStringDict.rb
fxruby-1.6.48-x86-mingw32 rdoc-sources/FXStringDict.rb
fxruby-1.6.47 rdoc-sources/FXStringDict.rb
fxruby-1.6.47-x64-mingw-ucrt rdoc-sources/FXStringDict.rb
fxruby-1.6.47-x64-mingw32 rdoc-sources/FXStringDict.rb
fxruby-1.6.47-x86-mingw32 rdoc-sources/FXStringDict.rb
fxruby-1.6.46 rdoc-sources/FXStringDict.rb
fxruby-1.6.46-x64-mingw32 rdoc-sources/FXStringDict.rb
fxruby-1.6.46-x64-mingw-ucrt rdoc-sources/FXStringDict.rb
fxruby-1.6.46-x86-mingw32 rdoc-sources/FXStringDict.rb
fxruby-1.6.45 rdoc-sources/FXStringDict.rb
fxruby-1.6.45-x64-mingw32 rdoc-sources/FXStringDict.rb
fxruby-1.6.45-x64-mingw-ucrt rdoc-sources/FXStringDict.rb
fxruby-1.6.45-x86-mingw32 rdoc-sources/FXStringDict.rb
fxruby-1.6.44 rdoc-sources/FXStringDict.rb
fxruby-1.6.44-x64-mingw32 rdoc-sources/FXStringDict.rb
fxruby-1.6.44-x86-mingw32 rdoc-sources/FXStringDict.rb
fxruby-1.6.43 rdoc-sources/FXStringDict.rb