Compare commits

..

2 commits

Author SHA1 Message Date
eriedaberrie 8c47cc60a0 2024 day 16 2024-12-16 01:26:46 -08:00
eriedaberrie 1c528be0d0 Add C++ util file 2024-12-16 01:26:46 -08:00

View file

@ -105,3 +105,6 @@ template <> struct std::hash<Coord<ull>> {
return (c.x << (sizeof(std::size_t) / 2)) - c.x + c.y;
}
};
typedef Coord<int> icoord;
typedef Coord<ull> ullcoord;