class Ccp::Kvs::Tch

Public Instance Methods

clear() click to toggle source
Calls superclass method
# File lib/ccp/kvs/tch.rb, line 20
def clear         ; W{ super }; end
count() click to toggle source
Calls superclass method
# File lib/ccp/kvs/tch.rb, line 17
def count         ; R{ super }; end
del(k) click to toggle source
Calls superclass method
# File lib/ccp/kvs/tch.rb, line 16
def del(k)        ; W{ super }; end
each(&b) click to toggle source

enum

Calls superclass method
# File lib/ccp/kvs/tch.rb, line 23
def each(&b)      ; R{ super }; end
each_key(&b) click to toggle source
Calls superclass method
# File lib/ccp/kvs/tch.rb, line 25
def each_key(&b)  ; R{ super }; end
each_pair(&b) click to toggle source
Calls superclass method
# File lib/ccp/kvs/tch.rb, line 24
def each_pair(&b) ; R{ super }; end
first() click to toggle source
Calls superclass method
# File lib/ccp/kvs/tch.rb, line 28
def first         ; R{ super }; end
first_key() click to toggle source
Calls superclass method
# File lib/ccp/kvs/tch.rb, line 27
def first_key     ; R{ super }; end
get(k) click to toggle source

core

Calls superclass method
# File lib/ccp/kvs/tch.rb, line 14
def get(k)        ; R{ super }; end
keys() click to toggle source
Calls superclass method
# File lib/ccp/kvs/tch.rb, line 26
def keys          ; R{ super }; end
read() click to toggle source
Calls superclass method
# File lib/ccp/kvs/tch.rb, line 18
def read          ; R{ super }; end
set(k,v) click to toggle source
Calls superclass method
# File lib/ccp/kvs/tch.rb, line 15
def set(k,v)      ; W{ super }; end
write(h) click to toggle source
Calls superclass method
# File lib/ccp/kvs/tch.rb, line 19
def write(h)      ; W{ super }; end