File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -76,9 +76,9 @@ val iter : ('a -> unit) -> 'a list -> unit
76
76
[begin f a1; f a2; ...; f an; () end]. *)
77
77
78
78
val iteri : (int -> 'a -> unit ) -> 'a list -> unit
79
- (* * Same as {!List.iter}, but the
80
- function is applied to the index of the element as first argument (counting from 0),
81
- and the element itself as second argument.
79
+ (* * Same as {!List.iter}, but the function is applied to the index of
80
+ the element as first argument (counting from 0), and the element
81
+ itself as second argument.
82
82
@since 3.13.0
83
83
*)
84
84
@@ -88,9 +88,9 @@ val map : ('a -> 'b) -> 'a list -> 'b list
88
88
with the results returned by [f]. Not tail-recursive. *)
89
89
90
90
val mapi : (int -> 'a -> 'b ) -> 'a list -> 'b list
91
- (* * Same as {!List.map}, but the
92
- function is applied to the index of the element as first argument (counting from 0),
93
- and the element itself as second argument.
91
+ (* * Same as {!List.map}, but the function is applied to the index of
92
+ the element as first argument (counting from 0), and the element
93
+ itself as second argument. Not tail-recursive .
94
94
@since 3.13.0
95
95
*)
96
96
You can’t perform that action at this time.
0 commit comments