File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,6 @@ let random_range i j st = add i (random (sub j i) st)
111
111
112
112
let of_string_exn = of_string
113
113
let of_string x = try Some (of_string_exn x) with Failure _ -> None
114
- let of_string_opt = of_string
115
114
let most_significant_bit = logxor (neg 1l ) (shift_right_logical (neg 1l ) 1 )
116
115
117
116
type output = char -> unit
Original file line number Diff line number Diff line change @@ -81,9 +81,6 @@ val of_string : string -> t option
81
81
(* * [of_string s] is the safe version of {!of_string_exn}.
82
82
Like {!of_string_exn}, but return [None] instead of raising. *)
83
83
84
- val of_string_opt : string -> t option
85
- (* * [of_string_opt s] is an alias to {!of_string}. *)
86
-
87
84
val of_string_exn : string -> t
88
85
(* * [of_string_exn s] converts the given string [s] into a 32-bit integer.
89
86
Alias to {!Int32.of_string}.
You can’t perform that action at this time.
0 commit comments