diff options
author | Alban Gruin | 2022-02-05 14:51:58 +0100 |
---|---|---|
committer | Alban Gruin | 2022-02-05 15:17:16 +0100 |
commit | b8b1b6704069497d9ccbbe35db3c5a17b2f9bc4c (patch) | |
tree | 897d92d0da89d4dcc5a809e4800de5ddcaacaf08 /src/ics.mli | |
parent | 0710bab08caffa9736bf7442d483ca9a6fd04708 (diff) |
ics: make Ics.t public
To simplify code down the line, this makes Ics.t public so everyone can
apply standard list processing functions onto it.
Signed-off-by: Alban Gruin <alban at pa1ch dot fr>
Diffstat (limited to 'src/ics.mli')
-rw-r--r-- | src/ics.mli | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ics.mli b/src/ics.mli index c2db3a2..575e88e 100644 --- a/src/ics.mli +++ b/src/ics.mli @@ -1,5 +1,5 @@ (* - * Copyright (C) 2020, 2021 Alban Gruin + * Copyright (C) 2020 -- 2022 Alban Gruin * * ucs is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published @@ -24,9 +24,8 @@ module Event : sig val to_string : string -> t -> int -> string end -type t +type t = Event.t list -val make : Event.t list -> t val filter_groups : string list -> t -> t val get_all_groups : t -> string Seq.t val to_string : string -> t -> string |