@@ -74,7 +74,7 @@ module Pervasives = {
74
74
external \"/" : (int , int ) => int = "%divint"
75
75
external mod : (int , int ) => int = "%modint"
76
76
77
- @deprecated ("Use Core or Js instead. This will be removed in v13" )
77
+ @deprecated ("Use Core instead. This will be removed in v13" )
78
78
let abs = x =>
79
79
if x >= 0 {
80
80
x
@@ -92,10 +92,10 @@ module Pervasives = {
92
92
external lsr : (int , int ) => int = "%lsrint"
93
93
external asr : (int , int ) => int = "%asrint"
94
94
95
- @deprecated ("Use Core or Js instead. This will be removed in v13" )
95
+ @deprecated ("Use Core instead. This will be removed in v13" )
96
96
let max_int = lsr (- 1 , 1 )
97
97
98
- @deprecated ("Use Core or Js instead. This will be removed in v13" )
98
+ @deprecated ("Use Core instead. This will be removed in v13" )
99
99
let min_int =
100
100
max_int + 1
101
101
@@ -108,61 +108,61 @@ module Pervasives = {
108
108
external \"*." : (float , float ) => float = "%mulfloat"
109
109
external \"/." : (float , float ) => float = "%divfloat"
110
110
111
- @deprecated ("Use Core or Js instead. This will be removed in v13" ) @val @scope ("Math" )
111
+ @deprecated ("Use Core instead. This will be removed in v13" ) @val @scope ("Math" )
112
112
external \"**" : (float , float ) => float = "pow"
113
113
114
- @deprecated ("Use Core or Js instead. This will be removed in v13" ) @val @scope ("Math" )
114
+ @deprecated ("Use Core instead. This will be removed in v13" ) @val @scope ("Math" )
115
115
external exp : float => float = "exp"
116
116
117
- @deprecated ("Use Core or Js instead. This will be removed in v13" ) @val @scope ("Math" )
117
+ @deprecated ("Use Core instead. This will be removed in v13" ) @val @scope ("Math" )
118
118
external acos : float => float = "acos"
119
119
120
- @deprecated ("Use Core or Js instead. This will be removed in v13" ) @val @scope ("Math" )
120
+ @deprecated ("Use Core instead. This will be removed in v13" ) @val @scope ("Math" )
121
121
external asin : float => float = "asin"
122
122
123
- @deprecated ("Use Core or Js instead. This will be removed in v13" ) @val @scope ("Math" )
123
+ @deprecated ("Use Core instead. This will be removed in v13" ) @val @scope ("Math" )
124
124
external atan : float => float = "atan"
125
125
126
- @deprecated ("Use Core or Js instead. This will be removed in v13" ) @val @scope ("Math" )
126
+ @deprecated ("Use Core instead. This will be removed in v13" ) @val @scope ("Math" )
127
127
external atan2 : (float , float ) => float = "atan2"
128
128
129
- @deprecated ("Use Core or Js instead. This will be removed in v13" ) @val @scope ("Math" )
129
+ @deprecated ("Use Core instead. This will be removed in v13" ) @val @scope ("Math" )
130
130
external cos : float => float = "cos"
131
131
132
- @deprecated ("Use Core or Js instead. This will be removed in v13" ) @val @scope ("Math" )
132
+ @deprecated ("Use Core instead. This will be removed in v13" ) @val @scope ("Math" )
133
133
external cosh : float => float = "cosh"
134
134
135
- @deprecated ("Use Core or Js instead. This will be removed in v13" ) @val @scope ("Math" )
135
+ @deprecated ("Use Core instead. This will be removed in v13" ) @val @scope ("Math" )
136
136
external log : float => float = "log"
137
137
138
- @deprecated ("Use Core or Js instead. This will be removed in v13" ) @val @scope ("Math" )
138
+ @deprecated ("Use Core instead. This will be removed in v13" ) @val @scope ("Math" )
139
139
external log10 : float => float = "log10"
140
140
141
- @deprecated ("Use Core or Js instead. This will be removed in v13" ) @val @scope ("Math" )
141
+ @deprecated ("Use Core instead. This will be removed in v13" ) @val @scope ("Math" )
142
142
external log1p : float => float = "log1p"
143
143
144
- @deprecated ("Use Core or Js instead. This will be removed in v13" ) @val @scope ("Math" )
144
+ @deprecated ("Use Core instead. This will be removed in v13" ) @val @scope ("Math" )
145
145
external sin : float => float = "sin"
146
146
147
- @deprecated ("Use Core or Js instead. This will be removed in v13" ) @val @scope ("Math" )
147
+ @deprecated ("Use Core instead. This will be removed in v13" ) @val @scope ("Math" )
148
148
external sinh : float => float = "sinh"
149
149
150
- @deprecated ("Use Core or Js instead. This will be removed in v13" ) @val @scope ("Math" )
150
+ @deprecated ("Use Core instead. This will be removed in v13" ) @val @scope ("Math" )
151
151
external sqrt : float => float = "sqrt"
152
152
153
- @deprecated ("Use Core or Js instead. This will be removed in v13" ) @val @scope ("Math" )
153
+ @deprecated ("Use Core instead. This will be removed in v13" ) @val @scope ("Math" )
154
154
external tan : float => float = "tan"
155
155
156
- @deprecated ("Use Core or Js instead. This will be removed in v13" ) @val @scope ("Math" )
156
+ @deprecated ("Use Core instead. This will be removed in v13" ) @val @scope ("Math" )
157
157
external tanh : float => float = "tanh"
158
158
159
- @deprecated ("Use Core or Js instead. This will be removed in v13" ) @val @scope ("Math" )
159
+ @deprecated ("Use Core instead. This will be removed in v13" ) @val @scope ("Math" )
160
160
external ceil : float => float = "ceil"
161
161
162
- @deprecated ("Use Core or Js instead. This will be removed in v13" ) @val @scope ("Math" )
162
+ @deprecated ("Use Core instead. This will be removed in v13" ) @val @scope ("Math" )
163
163
external floor : float => float = "floor"
164
164
165
- @deprecated ("Use Core or Js instead. This will be removed in v13" ) @val @scope ("Math" )
165
+ @deprecated ("Use Core instead. This will be removed in v13" ) @val @scope ("Math" )
166
166
external abs_float : float => float = "abs"
167
167
168
168
@deprecated ("Use Core instead. This will be removed in v13" )
0 commit comments