simple_scan
Iterator extension trait for simple scan.
The author of this crate is not good at English.
Forgive me if the document is hard to read.
What is this?
This crate provides the IteratorSimpleScanExt trait.
The IteratorSimpleScanExt trait is an extension trait of the Iterator trait,
which implements some methods similar to the scan methods of the Iterator
trait, but more simplified and specialized.
The following is a list of those methods. The sample code on the left shows the
case where those simplified methods are used, and the sample code on the right
shows the case where the same process is implemented with scan method.
trace
.trace
.scan;
trace2
.trace2
.scan;
diff
.diff
.scan;
What's New
Version 0.2.1 is update for document fix.
Version 0.2.0 changes trace2 behavior. In version 0.2, it track previous and
current state. While in version 0.1, it track current state and current input.