Fix inconsistency with docstring.
[elisp/liece.git] / dcc / hostlong.mli
1 type t
2
3 val of_int32 : int32 -> t
4       (* Convert the given 32-bit integer (type [int32]) to a hostlong
5          (type [Hostlong.t]). *)
6 val to_int32 : t -> int32
7       (* Convert the given hostlong (type [Hostlong.t]) to a 32-bit integer
8          (type [int32]). *)
9
10 val of_string : string -> t
11       (* Convert the given string to a hostlong (type [Hostlong.t]). *)
12
13 val to_string : t -> string
14       (* Return the string representation of its argument,
15          in signed decimal. *)
16
17 val of_address_string : string -> t
18       (* Convert the given string to a hostlong (type [Hostlong.t]). *)
19
20 val to_address_string : t -> string
21       (* Return the string representation of its argument,
22          in signed decimal. *)