// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "span.h" #include namespace v8_crdtp { bool SpanLessThan(span x, span y) noexcept { auto min_size = std::min(x.size(), y.size()); const int r = min_size == 0 ? 0 : memcmp(x.data(), y.data(), min_size); return (r < 0) || (r == 0 && x.size() < y.size()); } bool SpanEquals(span x, span y) noexcept { auto len = x.size(); if (len != y.size()) return false; return x.data() == y.data() || len == 0 || std::memcmp(x.data(), y.data(), len) == 0; } bool SpanLessThan(span x, span y) noexcept { auto min_size = std::min(x.size(), y.size()); const int r = min_size == 0 ? 0 : memcmp(x.data(), y.data(), min_size); return (r < 0) || (r == 0 && x.size() < y.size()); } bool SpanEquals(span x, span y) noexcept { auto len = x.size(); if (len != y.size()) return false; return x.data() == y.data() || len == 0 || std::memcmp(x.data(), y.data(), len) == 0; } } // namespace v8_crdtp