From 16e134d8a88cfb7c51c92881e6e7292a6ec00f3b Mon Sep 17 00:00:00 2001 From: a2800276 Date: Thu, 15 Aug 2019 17:57:24 +0200 Subject: Add fmt modules (printf implementation) (denoland/deno_std#566) Original: https://github.com/denoland/deno_std/commit/f7b511611ca5bc3801d6f210d82bddce9b0a61e4 --- fmt/TODO | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 fmt/TODO (limited to 'fmt/TODO') diff --git a/fmt/TODO b/fmt/TODO new file mode 100644 index 000000000..bfc3efdd1 --- /dev/null +++ b/fmt/TODO @@ -0,0 +1,12 @@ + +* "native" formatting, json, arrays, object/structs, functions ... +* %q %U +* Java has a %n flag to print the plattform native newline... in POSIX + that means "number of chars printed so far", though. +* use of Writer and Buffer internally in order to make FPrintf, Printf, etc. + easier and more elegant. +* see "Discussion" in README + +*scanf , pack,unpack, annotated hex +* error handling, consistantly +* probably rewrite, now that I konw how it's done. -- cgit v1.2.3