mirage / ocaml-fat

Read and write FAT format filesystems from OCaml
ISC License
26 stars 18 forks source link

Add V1.KV_RO interface #20

Closed avsm closed 10 years ago

avsm commented 10 years ago

This shows up the big flaw in the 0.5.0/KV_RO --- type error needs to be a poly variant in KV_RO (see mirage/mirage#147)

samoht commented 10 years ago

Does it mean we have to keep the error type abstract and select the right one depending on the implementation ? (of should we just have the same error type for FS and KV_RO ?)

samoht commented 10 years ago
ocamlfind: Package `cmdliner' not found
avsm commented 10 years ago

We need to have the same error type I think... or at least make KV_RO a polymorphic variant so its easier to subtype.

samoht commented 10 years ago

cmdliner is still missing

avsm commented 10 years ago

@djs55, I'll merge this for now to unblock the website and then split out the KV_RO-to-FS functor later.