start split library
[sqlgg.git] / lib / props.ml
blobef4074e1074f4884e019a17cd04b00348fd4ff82
1 (** Association list *)
2 type t = (string * string) list
4 let get x n = try Some (List.assoc n x) with Not_found -> None
5 let set x n v = (n,v)::(List.remove_assoc n x)
6 let empty = []