History Box
A history box that keeps history references
Installation
Add these lines to Cargo.toml under the [dependencies] section:
= "0.1"
Usage
let history_box = new;
history_box.get; // None
history_box.set;
history_box.get; // Some(&1))
history_box.set;
history_box.get; // Some(&2))
history_box.set;
history_box.get; // Some(&3))
License
MIT License