SummationByParts/sbp/src/utils.rs

7 lines
98 B
Rust
Raw Normal View History

2020-04-15 18:14:44 +00:00
pub struct Direction<T> {
pub north: T,
pub south: T,
pub west: T,
pub east: T,
}