let get_collection t = function       | None -> t.nocol       | Some s ->         begin try Hashtbl.find t.cols s         with _ ->           let newone = Hashtbl.create 42 in           Hashtbl.add t.cols s newone;           newone         end