MCPcopy Create free account
hub / github.com/OSGeo/PROJ / Key

Class Key

src/networkfilemanager.cpp:144–153  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

142
143 private:
144 struct Key {
145 std::string url;
146 unsigned long long chunkIdx;
147
148 Key(const std::string &urlIn, unsigned long long chunkIdxIn)
149 : url(urlIn), chunkIdx(chunkIdxIn) {}
150 bool operator==(const Key &other) const {
151 return url == other.url && chunkIdx == other.chunkIdx;
152 }
153 };
154
155 struct KeyHasher {
156 std::size_t operator()(const Key &k) const {

Callers 2

insertMethod · 0.85
getMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected