a1_notation 0.6.3

A package for converting to and from A1 spreadsheet notation
Documentation
1
2
3
4
5
6
7
8
#[cfg(feature = "rkyv")]
use a1_notation::new;

#[test]
#[cfg(feature = "rkyv")]
fn test_a1_to_and_from() {
    assert_eq!("A1", new("A1").unwrap().to_string());
}