summaryrefslogtreecommitdiffstats
path: root/lib/iban.ml
diff options
context:
space:
mode:
authorRutger Broekhoff2025-08-26 11:16:29 +0200
committerRutger Broekhoff2025-08-26 11:16:29 +0200
commitf95748e82a354f2ac857359774ec3227705838af (patch)
treee9d8eaf5d8b1cdb3950fdd2929ec5d97e541bf03 /lib/iban.ml
parente6873458facadea0dfb228bb33291d6baf68c427 (diff)
downloadrdcapsis-f95748e82a354f2ac857359774ec3227705838af.tar.gz
rdcapsis-f95748e82a354f2ac857359774ec3227705838af.zip
Prelude
Diffstat (limited to 'lib/iban.ml')
-rw-r--r--lib/iban.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/iban.ml b/lib/iban.ml
index 1db6c7b..fbea774 100644
--- a/lib/iban.ml
+++ b/lib/iban.ml
@@ -1,11 +1,11 @@
1open Core 1open Prelude
2open Option.Let_syntax 2open Option.Let_syntax
3 3
4type t = string 4type t = string
5 5
6(* Modulo-97 arithmetic. Prevents us from having to use Zarith here. *) 6(* Modulo-97 arithmetic. Prevents us from having to use Zarith here. *)
7module M97 : sig 7module M97 : sig
8 type t 8 type t = private int
9 9
10 val of_int : int -> t 10 val of_int : int -> t
11 val lt : t -> t -> bool 11 val lt : t -> t -> bool