File tree 2 files changed +0
-5
lines changed
2 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,6 @@ let random_range i j st = add i (random (sub j i) st)
128
128
129
129
let of_string_exn = of_string
130
130
let of_string x = try Some (of_string_exn x) with Failure _ -> None
131
- let of_string_opt = of_string
132
131
let most_significant_bit = logxor (neg 1L ) (shift_right_logical (neg 1L ) 1 )
133
132
134
133
type output = char -> unit
Original file line number Diff line number Diff line change @@ -86,10 +86,6 @@ val of_string : string -> t option
86
86
(* * [of_string s] is the safe version of {!of_string_exn}.
87
87
Like {!of_string_exn}, but return [None] instead of raising. *)
88
88
89
- val of_string_opt : string -> t option
90
- (* * [of_string_opt s] is an alias to {!of_string}.
91
- @since 2.1 *)
92
-
93
89
val of_string_exn : string -> t
94
90
(* * [of_string_exn s] converts the given string [s] into a 64-bit integer.
95
91
Alias to {!Int64.of_string}.
You can’t perform that action at this time.
0 commit comments