feat(Str.toNum): support decimal

This commit is contained in:
rvcas 2021-12-02 15:35:34 -05:00
parent d8a3a961bf
commit bc5b1abcba
5 changed files with 34 additions and 1 deletions

View file

@ -10,6 +10,7 @@ const STR = "str";
const dec = @import("dec.zig");
comptime {
exportDecFn(dec.fromStr, "from_str");
exportDecFn(dec.fromF64C, "from_f64");
exportDecFn(dec.eqC, "eq");
exportDecFn(dec.neqC, "neq");