add todo comment reminder for myself

This commit is contained in:
Gered 2022-12-30 17:27:22 -05:00
parent 1f31eaa17d
commit 319bea7305

View file

@ -17,6 +17,8 @@
//! * The LZW-encoded stream always starts with a "clear code" and ends with an "end of information"
//! code. The "clear code" may also appear at other times within the stream.
// TODO: LZW encode/decode algorithm optimizations. specifically, moving away from use of HashMaps
use std::collections::HashMap;
use byteorder::{ReadBytesExt, WriteBytesExt};