rle_vec 0.2.0

A vector like struct that stores data as runs of identical values. Useful for storing sparse data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# Change Log
All notable changes to this project will be documented in this file.

## [0.2.0] - 2016-11-30
### Added
* Made a public type `Run`.
* `Iterators` for `Run` and `FromIterator<Run<T>`
* Added `min()` and `max()` to `RleVecIterator` that only look at run values.
  This is much more efficient than looping over each repeated value

## [0.1.0] - 2016-11-28
- Initial release