aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2015-02-04 20:57:56 -0500
committerAndrew Gallant <jamslam@gmail.com>2015-02-04 20:57:56 -0500
commit5be204553fe5b18697c86a58ded3310428d047ba (patch)
treeef0c4efd30c144ad6680fbf5373fedf455a139c2 /README.md
parent316330556bc255ac178f5223646ae4483470b845 (diff)
downloadbyteorder-5be204553fe5b18697c86a58ded3310428d047ba.tar.gz
Leave some breadcrumbs.
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/README.md b/README.md
index 664e58f..a1d7d5f 100644
--- a/README.md
+++ b/README.md
@@ -4,3 +4,16 @@ methods defined on the standard library `Reader` and `Writer` traits.
Work in progress.
+
+TODO
+====
+1. `f32` and `f64` support. (trivial)
+2. Flesh out the README. (Install, examples, links to docs, limitations.)
+
+
+Ideas?
+======
+Use the `rustc-serialize` infrastructure, but it is known to be Not Fast. So
+I'm skeptical of how useful it would be. Basically, it would let you say
+something like: `let n: u32 = rdr.decode::<BigEndian>()` as opposed to
+`let n = rdr.read_u32::<BigEndian>()`. Doesn't seem like an obvious win.