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