1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-02 09:34:19 -04:00
denoland-deno/std/fmt/TODO

14 lines
457 B
Text
Raw Normal View History

* "native" formatting, json, arrays, object/structs, functions ...
* %q %U
2020-05-15 08:52:01 -04:00
* Java has a %n flag to print the platform native newline... in POSIX
that means "number of chars printed so far", though.
2020-05-15 08:52:01 -04:00
* Use of Writer and Buffer internally in order to make fprintf, printf, etc.
easier and more elegant.
2020-05-15 08:52:01 -04:00
* See "Discussion" in README
2020-05-15 08:52:01 -04:00
* scanf, pack, unpack, annotated hex
2020-05-14 02:58:48 -04:00
* Consistent error handling.
* Rewrite (probably), now that I know how it's done.