diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-11-28 23:53:55 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-12-20 15:35:58 +0100 |
commit | 27c3969e69f5525ccb0bc462a615a14142b5f178 (patch) | |
tree | a11ebc28cb6c2609d5e04913f63d5c1ba1181e0e /asl/format.hpp | |
parent | 3dc9bc3a6cefa30c553c6ec21b1545db98e26b6d (diff) |
Add float utilities, & float formatting with dragonbox
Diffstat (limited to 'asl/format.hpp')
-rw-r--r-- | asl/format.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/asl/format.hpp b/asl/format.hpp index 9504701..ac51693 100644 --- a/asl/format.hpp +++ b/asl/format.hpp @@ -102,4 +102,6 @@ void AslFormat(Formatter& f, int16_t); void AslFormat(Formatter& f, int32_t);
void AslFormat(Formatter& f, int64_t);
+string_view format_uint64(uint64_t value, span<char, 20> buffer);
+
} // namespace asl
|