source:
code/trunk/src/core/store.ml@
1
Last change on this file since 1 was 1, checked in by , 9 years ago | |
---|---|
File size: 256 bytes |
Line | |
---|---|
1 | module type T = sig |
2 | type t |
3 | val to_list: ?order:('a -> 'a -> int) -> (Note.t -> 'a) -> t -> 'a list |
4 | val note_with_id: t -> Meta.Id.t -> Note.t option |
5 | val note_with_alias: t -> string -> Note.t option |
6 | val with_note: t -> Note.t -> Note.t Lwt.t |
7 | end |
Note:
See TracBrowser
for help on using the repository browser.