]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/string_view.h
Store tags in the cache (they are very useful :/).
[apt.git] / apt-pkg / contrib / string_view.h
index f158ef8d6c84da6fa5e41f29359def01c7ceb91e..c504edd27717178920875a34c421399d03601d6c 100644 (file)
@@ -112,6 +112,17 @@ public:
     constexpr size_t length() const { return size_; }
 };
 
+/**
+ * \brief Faster comparison for string views (compare size before data)
+ *
+ * Still stable, but faster than the normal ordering. */
+static inline int StringViewCompareFast(StringView a, StringView b) {
+    if (a.size() != b.size())
+        return a.size() - b.size();
+
+    return memcmp(a.data(), b.data(), a.size());
+}
+
 
 }