---
source: src/grid/mod.rs
expression: result.boundaries
---
Boundaries:
BoundaryIndex(0, 0)
BoundaryIndex(0, 1)
BoundaryIndex(0, 2)
BoundaryIndex(1, 0)
BoundaryIndex(1, 2)
BoundaryIndex(2, 0)
BoundaryIndex(2, 2)
BoundaryIndex(3, 0)
BoundaryIndex(3, 1)
BoundaryIndex(3, 2)
Sorted Boundary List:
((0, 0), None)
((0, 1), Some(East { east_neighbor: (1, 1) }))
((0, 2), None)
((1, 0), Some(South { south_neighbor: (1, 1) }))
((1, 2), Some(North { north_neighbor: (1, 1) }))
((2, 0), Some(South { south_neighbor: (2, 1) }))
((2, 2), Some(North { north_neighbor: (2, 1) }))
((3, 0), None)
((3, 1), Some(West { west_neighbor: (2, 1) }))
((3, 2), None)