| ... | ... | @@ -202,54 +202,8 @@ pub const Complex = complex.Complex; |
| 202 | 202 | |
| 203 | 203 | pub const big = @import("math/big.zig"); |
| 204 | 204 | |
| 205 | | test "math" { |
| 206 | | _ = @import("math/nan.zig"); |
| 207 | | _ = @import("math/isnan.zig"); |
| 208 | | _ = @import("math/fabs.zig"); |
| 209 | | _ = @import("math/ceil.zig"); |
| 210 | | _ = @import("math/floor.zig"); |
| 211 | | _ = @import("math/trunc.zig"); |
| 212 | | _ = @import("math/round.zig"); |
| 213 | | _ = @import("math/frexp.zig"); |
| 214 | | _ = @import("math/modf.zig"); |
| 215 | | _ = @import("math/copysign.zig"); |
| 216 | | _ = @import("math/isfinite.zig"); |
| 217 | | _ = @import("math/isinf.zig"); |
| 218 | | _ = @import("math/isnormal.zig"); |
| 219 | | _ = @import("math/signbit.zig"); |
| 220 | | _ = @import("math/scalbn.zig"); |
| 221 | | _ = @import("math/pow.zig"); |
| 222 | | _ = @import("math/powi.zig"); |
| 223 | | _ = @import("math/sqrt.zig"); |
| 224 | | _ = @import("math/cbrt.zig"); |
| 225 | | _ = @import("math/acos.zig"); |
| 226 | | _ = @import("math/asin.zig"); |
| 227 | | _ = @import("math/atan.zig"); |
| 228 | | _ = @import("math/atan2.zig"); |
| 229 | | _ = @import("math/hypot.zig"); |
| 230 | | _ = @import("math/exp.zig"); |
| 231 | | _ = @import("math/exp2.zig"); |
| 232 | | _ = @import("math/expm1.zig"); |
| 233 | | _ = @import("math/ilogb.zig"); |
| 234 | | _ = @import("math/ln.zig"); |
| 235 | | _ = @import("math/log.zig"); |
| 236 | | _ = @import("math/log2.zig"); |
| 237 | | _ = @import("math/log10.zig"); |
| 238 | | _ = @import("math/log1p.zig"); |
| 239 | | _ = @import("math/fma.zig"); |
| 240 | | _ = @import("math/asinh.zig"); |
| 241 | | _ = @import("math/acosh.zig"); |
| 242 | | _ = @import("math/atanh.zig"); |
| 243 | | _ = @import("math/sinh.zig"); |
| 244 | | _ = @import("math/cosh.zig"); |
| 245 | | _ = @import("math/tanh.zig"); |
| 246 | | _ = @import("math/sin.zig"); |
| 247 | | _ = @import("math/cos.zig"); |
| 248 | | _ = @import("math/tan.zig"); |
| 249 | | |
| 250 | | _ = @import("math/complex.zig"); |
| 251 | | |
| 252 | | _ = @import("math/big.zig"); |
| 205 | comptime { |
| 206 | std.meta.refAllDecls(@This()); |
| 253 | 207 | } |
| 254 | 208 | |
| 255 | 209 | pub fn floatMantissaBits(comptime T: type) comptime_int { |