add todo comment reminder for myself
This commit is contained in:
parent
1f31eaa17d
commit
319bea7305
|
@ -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};
|
||||
|
|
Loading…
Reference in a new issue