MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / operator<

Function operator<

Bcore/src/main/cpp/dex/dex_file_reference.h:43–45  ·  view source on GitHub ↗

Default comparators, compares the indicies, not the backing data.

Source from the content-addressed store, hash-verified

41
42// Default comparators, compares the indicies, not the backing data.
43inline bool operator<(const DexFileReference& a, const DexFileReference& b) {
44 return DexFileReference::Comparator()(a, b);
45}
46inline bool operator==(const DexFileReference& a, const DexFileReference& b) {
47 return a.dex_file == b.dex_file && a.index == b.index;
48}

Callers

nothing calls this directly

Calls 1

ComparatorClass · 0.85

Tested by

no test coverage detected