diff options
author | Rutger Broekhoff | 2025-08-25 19:48:19 +0200 |
---|---|---|
committer | Rutger Broekhoff | 2025-08-25 19:48:19 +0200 |
commit | 95d50b25c990e8c945ce2507b16ff3c8b039d286 (patch) | |
tree | c1ff4c7f9601c6980eed1a7235ba336c5c6f6106 /lib/iban.mli | |
parent | 29b26dcbc1404925bbf12cddd66f7fcd3c57cfe7 (diff) | |
download | rdcapsis-95d50b25c990e8c945ce2507b16ff3c8b039d286.tar.gz rdcapsis-95d50b25c990e8c945ce2507b16ff3c8b039d286.zip |
OCaml
Diffstat (limited to 'lib/iban.mli')
-rw-r--r-- | lib/iban.mli | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/iban.mli b/lib/iban.mli new file mode 100644 index 0000000..944928c --- /dev/null +++ b/lib/iban.mli | |||
@@ -0,0 +1,8 @@ | |||
1 | open Core | ||
2 | |||
3 | type t | ||
4 | |||
5 | val make : string -> t option | ||
6 | |||
7 | include Stringable.S with type t := t | ||
8 | include Equal.S with type t := t | ||