mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/yaml/dbm.rb: [DOC] Document call-seq for YAML::DBM
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42532 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d075c430cb
commit
8b95e93263
2 changed files with 60 additions and 11 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Mon Aug 12 13:29:09 2013 Zachary Scott <e@zzak.io>
|
||||||
|
|
||||||
|
* lib/yaml/dbm.rb: [DOC] Document call-seq for YAML::DBM
|
||||||
|
|
||||||
Mon Aug 12 12:57:26 2013 Zachary Scott <e@zzak.io>
|
Mon Aug 12 12:57:26 2013 Zachary Scott <e@zzak.io>
|
||||||
|
|
||||||
* ext/dbm/extconf.rb: [DOC] Hide from RDoc
|
* ext/dbm/extconf.rb: [DOC] Hide from RDoc
|
||||||
|
|
|
@ -17,6 +17,9 @@ module YAML
|
||||||
class DBM < ::DBM
|
class DBM < ::DBM
|
||||||
VERSION = "0.1" # :nodoc:
|
VERSION = "0.1" # :nodoc:
|
||||||
|
|
||||||
|
# :call-seq:
|
||||||
|
# ydbm[key] -> value
|
||||||
|
#
|
||||||
# Return value associated with +key+ from database.
|
# Return value associated with +key+ from database.
|
||||||
#
|
#
|
||||||
# Returns +nil+ if there is no such +key+.
|
# Returns +nil+ if there is no such +key+.
|
||||||
|
@ -27,7 +30,7 @@ class DBM < ::DBM
|
||||||
end
|
end
|
||||||
|
|
||||||
# :call-seq:
|
# :call-seq:
|
||||||
# []=( key, value )
|
# ydbm[key] = value
|
||||||
#
|
#
|
||||||
# Set +key+ to +value+ in database.
|
# Set +key+ to +value+ in database.
|
||||||
#
|
#
|
||||||
|
@ -39,8 +42,8 @@ class DBM < ::DBM
|
||||||
end
|
end
|
||||||
|
|
||||||
# :call-seq:
|
# :call-seq:
|
||||||
# fetch( key, ifnone = nil )
|
# ydbm.fetch( key, ifnone = nil )
|
||||||
# fetch( key, &block )
|
# ydbm.fetch( key ) { |key| ... }
|
||||||
#
|
#
|
||||||
# Return value associated with +key+.
|
# Return value associated with +key+.
|
||||||
#
|
#
|
||||||
|
@ -74,18 +77,24 @@ class DBM < ::DBM
|
||||||
end
|
end
|
||||||
|
|
||||||
# :call-seq:
|
# :call-seq:
|
||||||
# db.key(value) -> string
|
# ydbm.key(value) -> string
|
||||||
#
|
#
|
||||||
# Returns the key for the specified value.
|
# Returns the key for the specified value.
|
||||||
def key( keystr )
|
def key( keystr )
|
||||||
invert[keystr]
|
invert[keystr]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# :call-seq:
|
||||||
|
# ydbm.values_at(*keys)
|
||||||
|
#
|
||||||
# Returns an array containing the values associated with the given keys.
|
# Returns an array containing the values associated with the given keys.
|
||||||
def values_at( *keys )
|
def values_at( *keys )
|
||||||
keys.collect { |k| fetch( k ) }
|
keys.collect { |k| fetch( k ) }
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# :call-seq:
|
||||||
|
# ydbm.delete(key)
|
||||||
|
#
|
||||||
# Deletes value from database associated with +key+.
|
# Deletes value from database associated with +key+.
|
||||||
#
|
#
|
||||||
# Returns value or +nil+.
|
# Returns value or +nil+.
|
||||||
|
@ -97,6 +106,9 @@ class DBM < ::DBM
|
||||||
v
|
v
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# :call-seq:
|
||||||
|
# ydbm.delete_if { |key, value| ... }
|
||||||
|
#
|
||||||
# Calls the given block once for each +key+, +value+ pair in the database.
|
# Calls the given block once for each +key+, +value+ pair in the database.
|
||||||
# Deletes all entries for which the block returns true.
|
# Deletes all entries for which the block returns true.
|
||||||
#
|
#
|
||||||
|
@ -108,6 +120,9 @@ class DBM < ::DBM
|
||||||
self
|
self
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# :call-seq:
|
||||||
|
# ydbm.reject { |key, value| ... }
|
||||||
|
#
|
||||||
# Converts the contents of the database to an in-memory Hash, then calls
|
# Converts the contents of the database to an in-memory Hash, then calls
|
||||||
# Hash#reject with the specified code block, returning a new Hash.
|
# Hash#reject with the specified code block, returning a new Hash.
|
||||||
def reject
|
def reject
|
||||||
|
@ -115,6 +130,9 @@ class DBM < ::DBM
|
||||||
hsh.reject { |k,v| yield k, v }
|
hsh.reject { |k,v| yield k, v }
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# :call-seq:
|
||||||
|
# ydbm.each_pair { |key, value| ... }
|
||||||
|
#
|
||||||
# Calls the given block once for each +key+, +value+ pair in the database.
|
# Calls the given block once for each +key+, +value+ pair in the database.
|
||||||
#
|
#
|
||||||
# Returns +self+.
|
# Returns +self+.
|
||||||
|
@ -123,6 +141,9 @@ class DBM < ::DBM
|
||||||
self
|
self
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# :call-seq:
|
||||||
|
# ydbm.each_value { |value| ... }
|
||||||
|
#
|
||||||
# Calls the given block for each value in database.
|
# Calls the given block for each value in database.
|
||||||
#
|
#
|
||||||
# Returns +self+.
|
# Returns +self+.
|
||||||
|
@ -131,17 +152,26 @@ class DBM < ::DBM
|
||||||
self
|
self
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# :call-seq:
|
||||||
|
# ydbm.values
|
||||||
|
#
|
||||||
# Returns an array of values from the database.
|
# Returns an array of values from the database.
|
||||||
def values
|
def values
|
||||||
super.collect { |v| YAML.load( v ) }
|
super.collect { |v| YAML.load( v ) }
|
||||||
end
|
end
|
||||||
|
|
||||||
# Returns true if specified value is found in the database.
|
# :call-seq:
|
||||||
|
# ydbm.has_value?(value)
|
||||||
|
#
|
||||||
|
# Returns true if specified +value+ is found in the database.
|
||||||
def has_value?( val )
|
def has_value?( val )
|
||||||
each_value { |v| return true if v == val }
|
each_value { |v| return true if v == val }
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# :call-seq:
|
||||||
|
# ydbm.invert -> hash
|
||||||
|
#
|
||||||
# Returns a Hash (not a DBM database) created by using each value in the
|
# Returns a Hash (not a DBM database) created by using each value in the
|
||||||
# database as a key, with the corresponding key as its value.
|
# database as a key, with the corresponding key as its value.
|
||||||
#
|
#
|
||||||
|
@ -153,6 +183,9 @@ class DBM < ::DBM
|
||||||
h
|
h
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# :call-seq:
|
||||||
|
# ydbm.replace(hash) -> ydbm
|
||||||
|
#
|
||||||
# Replaces the contents of the database with the contents of the specified
|
# Replaces the contents of the database with the contents of the specified
|
||||||
# object. Takes any object which implements the each_pair method, including
|
# object. Takes any object which implements the each_pair method, including
|
||||||
# Hash and DBM objects.
|
# Hash and DBM objects.
|
||||||
|
@ -161,6 +194,9 @@ class DBM < ::DBM
|
||||||
update( hsh )
|
update( hsh )
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# :call-seq:
|
||||||
|
# ydbm.shift -> [key, value]
|
||||||
|
#
|
||||||
# Removes a [key, value] pair from the database, and returns it.
|
# Removes a [key, value] pair from the database, and returns it.
|
||||||
# If the database is empty, returns +nil+.
|
# If the database is empty, returns +nil+.
|
||||||
#
|
#
|
||||||
|
@ -172,8 +208,8 @@ class DBM < ::DBM
|
||||||
end
|
end
|
||||||
|
|
||||||
# :call-seq:
|
# :call-seq:
|
||||||
# select( &block )
|
# ydbm.select { |key, value| ... }
|
||||||
# select( *keys )
|
# ydbm.select(*keys)
|
||||||
#
|
#
|
||||||
# If a block is provided, returns a new array containing [key, value] pairs
|
# If a block is provided, returns a new array containing [key, value] pairs
|
||||||
# for which the block returns true.
|
# for which the block returns true.
|
||||||
|
@ -188,7 +224,7 @@ class DBM < ::DBM
|
||||||
end
|
end
|
||||||
|
|
||||||
# :call-seq:
|
# :call-seq:
|
||||||
# store( key, value )
|
# ydbm.store(key, value) -> value
|
||||||
#
|
#
|
||||||
# Stores +value+ in database with +key+ as the index. +value+ is converted
|
# Stores +value+ in database with +key+ as the index. +value+ is converted
|
||||||
# to YAML before being stored.
|
# to YAML before being stored.
|
||||||
|
@ -199,6 +235,9 @@ class DBM < ::DBM
|
||||||
val
|
val
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# :call-seq:
|
||||||
|
# ydbm.update(hash) -> ydbm
|
||||||
|
#
|
||||||
# Updates the database with multiple values from the specified object.
|
# Updates the database with multiple values from the specified object.
|
||||||
# Takes any object which implements the each_pair method, including
|
# Takes any object which implements the each_pair method, including
|
||||||
# Hash and DBM objects.
|
# Hash and DBM objects.
|
||||||
|
@ -211,6 +250,9 @@ class DBM < ::DBM
|
||||||
self
|
self
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# :call-seq:
|
||||||
|
# ydbm.to_a -> array
|
||||||
|
#
|
||||||
# Converts the contents of the database to an array of [key, value] arrays,
|
# Converts the contents of the database to an array of [key, value] arrays,
|
||||||
# and returns it.
|
# and returns it.
|
||||||
def to_a
|
def to_a
|
||||||
|
@ -220,6 +262,9 @@ class DBM < ::DBM
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
# :call-seq:
|
||||||
|
# ydbm.to_hash -> hash
|
||||||
|
#
|
||||||
# Converts the contents of the database to an in-memory Hash object, and
|
# Converts the contents of the database to an in-memory Hash object, and
|
||||||
# returns it.
|
# returns it.
|
||||||
def to_hash
|
def to_hash
|
||||||
|
|
Loading…
Reference in a new issue