Starting a new iteration implementation.

This implementation will reduce the use of heap by elimininating Box<> from the individual iterators but it will still need heap for maintaining a vector of iterators from nodes.
This commit is contained in:
Tom Alexander
2023-09-27 13:48:17 -04:00
parent dd91e506bd
commit 35f058a354
4 changed files with 9 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ pub mod compare;
mod context;
mod error;
mod iter;
pub mod parser;
pub mod types;