```rust use orgize::{Org, ast::{Timestamp, TimeUnit}}; let t = Org::parse("[2000-01-01 +1w]").first_node:: ().unwrap(); assert_eq!(t.repeater_unit(), Some(TimeUnit::Week)); let t = Org::parse("[2000-01-01 .+10d +1w]").first_node:: ().unwrap(); assert_eq!(t.repeater_unit(), Some(TimeUnit::Day)); let t = Org::parse("[2000-01-01 --1y]").first_node:: ().unwrap(); assert_
(&self)
source not stored for this graph (policy: none)
nothing calls this directly
no test coverage detected