Parent

Included Modules

Class/Module Index [+]

Quicksearch

Cinch::Storage

@note The interface of this class isn't fixed yet. You shouldn't

use it yet.

Public Class Methods

new(options, plugin) click to toggle source

@param [Hash] options @param [Plugin] plugin

# File lib/cinch/storage.rb, line 9
def initialize(options, plugin)
end

Public Instance Methods

[](key) click to toggle source

@param [Object] key @return [Object, nil]

# File lib/cinch/storage.rb, line 14
def [](key)
end
[]=(key, value) click to toggle source

@param [Object] key @param [Object] value @return [value]

# File lib/cinch/storage.rb, line 20
def []=(key, value)
end
delete(key) click to toggle source

@param [Object] key @return [Object, nil] The deleted object

# File lib/cinch/storage.rb, line 49
def delete(key)
end
delete_if() click to toggle source

@return [self]

# File lib/cinch/storage.rb, line 53
def delete_if
  self
end
each() click to toggle source

@return [self]

# File lib/cinch/storage.rb, line 24
def each
  self
end
each_key() click to toggle source

@return [self]

# File lib/cinch/storage.rb, line 29
def each_key
  self
end
each_value() click to toggle source

@return [self]

# File lib/cinch/storage.rb, line 34
def each_value
  self
end
has_key?(key) click to toggle source

@param [Object] key @return [Boolean]

# File lib/cinch/storage.rb, line 40
def has_key?(key)
  false
end
Also aliased as: include?, key?, member?
include?(key) click to toggle source
Alias for: has_key?
key?(key) click to toggle source
Alias for: has_key?
member?(key) click to toggle source
Alias for: has_key?
save() click to toggle source
# File lib/cinch/storage.rb, line 57
def save
end
unload() click to toggle source
# File lib/cinch/storage.rb, line 60
def unload
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.