Trait aoc_grid::GridViewPrint
source · pub trait GridViewPrint<Pos>: GridView<Pos, 2>where
Pos: GridPos<2>,{
// Provided method
fn print<MapFn, Out>(
self,
map_fn: MapFn
) -> GridPrint<Self, Pos, MapFn, Out>
where MapFn: Fn(Self::Item) -> Out,
Out: Display,
Self: Sized { ... }
}