Module AnyDBM.AnyDBMUtils


module AnyDBMUtils: sig .. end
Utilities for AnyDBM module implementators


val flags_old_to_new : AnyDBM.open_flag list -> AnyDBM.anydbm_open_flag
Given flags of the style open_flag, return a new-style anydbm_open_flag
val flags_new_to_old : AnyDBM.anydbm_open_flag -> AnyDBM.open_flag list
Given flags of anydbm_open_flag, return old-style open_flag
val flags_new_to_open : AnyDBM.anydbm_open_flag -> Pervasives.open_flag -> Pervasives.open_flag list
Given flags of the new style, return flags for Pervasives open_gen functions. The flagbase parameter should be Open_rdonly or Open_wronly depending on whether you are reading or writing primarily.
class virtual anyDBM_Base : AnyDBM.anydbm_open_flag -> object .. end
Utility class for implementators