summaryrefslogtreecommitdiff
path: root/tools/quickbook/src/string_ref.cpp
blob: 6c33df12601c0a9b0b01940ec6ea57bb4f8a0c95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*=============================================================================
    Copyright (c) 2011 Daniel James

    Use, modification and distribution is subject to the Boost Software
    License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
    http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/

#include "string_ref.hpp"
#include <boost/range/algorithm/equal.hpp>
#include <boost/range/algorithm/lexicographical_compare.hpp>
#include <boost/utility/swap.hpp>
#include <ostream>

namespace quickbook
{
    void string_ref::swap(string_ref& x)
    {
        boost::swap(begin_, x.begin_);
        boost::swap(end_, x.end_);
    }

    bool operator==(string_ref const& x, string_ref const& y)
    {
        return boost::equal(x, y);
    }

    bool operator<(string_ref const& x, string_ref const& y)
    {
        return boost::lexicographical_compare(x, y);
    }

    std::ostream& operator<<(std::ostream& out, string_ref const& x)
    {
        return out.write(&*x.begin(), x.end() - x.begin());
    }
}