BasicKeyedAccessFile

fops.spad line 308 [edit on github]

undocumented

close! : % -> Void

close! closes the keyed access file.

keys : % -> List(String)

keys(f) gives the list of keys of f.

open : (FileName, String) -> %

open opens the keyed access file.

read : (%, String) -> None

read(f, key) reads item with the key key from f.

remove! : (%, String) -> Void

remove!(f, key) removes item with the key key from f.

write! : (%, String, None) -> Void

write! writes one item to the keyed access file.