alpha-counter is a library providing the [AlphaCounter
] iterator representing
an alphabetic counter as would be used for numbering appendices.
It provides convenience methods to create [upper
][AlphaCounter::upper] and
[lower
][AlphaCounter::lower] ASCII alphabets as well as any alphabet via the
[custom
][AlphaCounter::custom] method.
All three constructors enable starting the iterator at any point; although one
could also manipulate it via regular Iterator methods.
``` use alpha_counter::AlphaCounter;
assert_eq!(
AlphaCounter::lower(0).take(30).collect::
assert_eq!(
AlphaCounter::upper(0).take(30).collect::
assert_eq!(
AlphaCounter::custom(0, "abc")
.take(30)
.collect::