diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-10-10 23:38:35 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-12-20 15:35:58 +0100 |
commit | e020805cb140ed98d09e606a867b910fce78ad15 (patch) | |
tree | 08e79fbfa9e799b15f170bdeb198c2ba19287189 /asl/format.hpp | |
parent | 8dfd173285df515fe9b41d970321da9d049460f8 (diff) |
Integers formatting
Diffstat (limited to 'asl/format.hpp')
-rw-r--r-- | asl/format.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/asl/format.hpp b/asl/format.hpp index 1b4088e..f17329f 100644 --- a/asl/format.hpp +++ b/asl/format.hpp @@ -93,4 +93,17 @@ void AslFormat(formatter& f, const char (&str)[N]) f.write(str, N - 1);
}
+void AslFormat(formatter& f, float);
+void AslFormat(formatter& f, double);
+
+void AslFormat(formatter& f, uint8_t);
+void AslFormat(formatter& f, uint16_t);
+void AslFormat(formatter& f, uint32_t);
+void AslFormat(formatter& f, uint64_t);
+
+void AslFormat(formatter& f, int8_t);
+void AslFormat(formatter& f, int16_t);
+void AslFormat(formatter& f, int32_t);
+void AslFormat(formatter& f, int64_t);
+
} // namespace asl
|