a1 1.0.1

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

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