De/Serialize a Tile to and from a TileProto.
| 38 | |
| 39 | // De/Serialize a Tile to and from a TileProto. |
| 40 | static Tile CreateFromProto(const TileProto& tile_proto) { |
| 41 | return Tile(AsInt64Slice(tile_proto.dimensions())); |
| 42 | } |
| 43 | TileProto ToProto() const; |
| 44 | |
| 45 | bool operator==(const Tile& other) const { |
nothing calls this directly
no test coverage detected