// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "span.h" #include <algorithm> namespace crdtp { bool SpanLessThan(span<uint8_t> x, span<uint8_t> y) noexcept { … } bool SpanEquals(span<uint8_t> x, span<uint8_t> y) noexcept { … } bool SpanLessThan(span<char> x, span<char> y) noexcept { … } bool SpanEquals(span<char> x, span<char> y) noexcept { … } } // namespace crdtp