@@ -207,24 +207,24 @@ def wrapper(x: Array, /) -> Array:
207
207
isinf = _create_unary_func ("isinf" , "numeric" )
208
208
isnan = _create_unary_func ("isnan" , "numeric" )
209
209
log = _create_unary_func ("log" , "floating-point" )
210
+ log10 = _create_unary_func ("log10" , "floating-point" )
210
211
log1p = _create_unary_func ("log1p" , "floating-point" )
211
212
log2 = _create_unary_func ("log2" , "floating-point" )
212
- log10 = _create_unary_func ("log10" , "floating-point" )
213
213
logical_not = _create_unary_func ("logical_not" , "boolean" )
214
214
negative = _create_unary_func ("negative" , "numeric" )
215
215
positive = _create_unary_func ("positive" , "numeric" )
216
+ real = _create_unary_func ("real" , "numeric" )
216
217
reciprocal = requires_api_version ("2024.12" )(
217
218
_create_unary_func ("reciprocal" , "floating-point" )
218
219
)
219
- real = _create_unary_func ("real" , "numeric" )
220
220
round = _create_unary_func ("round" , "numeric" )
221
221
signbit = requires_api_version ("2023.12" )(
222
222
_create_unary_func ("signbit" , "real floating-point" )
223
223
)
224
224
sin = _create_unary_func ("sin" , "floating-point" )
225
225
sinh = _create_unary_func ("sinh" , "floating-point" )
226
- square = _create_unary_func ("square" , "numeric" )
227
226
sqrt = _create_unary_func ("sqrt" , "floating-point" )
227
+ square = _create_unary_func ("square" , "numeric" )
228
228
tan = _create_unary_func ("tan" , "floating-point" )
229
229
tanh = _create_unary_func ("tanh" , "floating-point" )
230
230
trunc = _identity_if_integer (_create_unary_func ("trunc" , "real numeric" ))
0 commit comments