Sha256: c05d973d860fd6248d0766ede3a1c6ab0802e6c9e727f47ae52d0863bd6b65ee

Contents?: true

Size: 850 Bytes

Versions: 55

Compression:

Stored size: 850 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

55 entries across 55 versions & 2 rubygems

Version Path
fxruby-1.6.22.pre2-x86-mingw32 rdoc-sources/FXStringDict.rb
fxruby-1.6.22.pre2 rdoc-sources/FXStringDict.rb
fxrubi-1.6.22.pre1-x86-mingw32 rdoc-sources/FXStringDict.rb
fxrubi-1.6.22.pre1 rdoc-sources/FXStringDict.rb
fxruby-1.6.20-x86-mingw32 rdoc-sources/FXStringDict.rb
fxruby-1.6.20-x86-linux rdoc-sources/FXStringDict.rb
fxruby-1.6.20 rdoc-sources/FXStringDict.rb
fxruby-1.6.20-universal-darwin-10 rdoc-sources/FXStringDict.rb
fxruby-1.6.19-x86-mingw32 rdoc-sources/FXStringDict.rb
fxruby-1.6.14-mswin32 rdoc-sources/FXStringDict.rb
fxruby-1.6.13-mswin32 rdoc-sources/FXStringDict.rb
fxruby-1.2.2 rdoc-sources/FXStringDict.rb
fxruby-1.2.3 rdoc-sources/FXStringDict.rb
fxruby-1.2.4 rdoc-sources/FXStringDict.rb
fxruby-1.2.5 rdoc-sources/FXStringDict.rb
fxruby-1.4.0 rdoc-sources/FXStringDict.rb
fxruby-1.2.6 rdoc-sources/FXStringDict.rb
fxruby-1.4.1 rdoc-sources/FXStringDict.rb
fxruby-1.4.2 rdoc-sources/FXStringDict.rb
fxruby-1.4.3 rdoc-sources/FXStringDict.rb