blob: 528fd3c548fe0d060cd648a8563bc585a9047793 (
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
38
39
40
41
42
43
|
// file : build/prefix-map.txx -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
namespace build
{
template <typename M>
auto prefix_map_common<M>::
find_prefix (const key_type& k) -> std::pair<iterator, iterator>
{
std::pair<iterator, iterator> r;
r.first = this->lower_bound (k);
for (r.second = r.first;
r.second != this->end ();
++r.second)
{
if (!this->key_comp ().prefix (k, r.second->first))
break;
}
return r;
}
template <typename M>
auto prefix_map_common<M>::
find_prefix (const key_type& k) const ->
std::pair<const_iterator, const_iterator>
{
std::pair<const_iterator, const_iterator> r;
r.first = this->lower_bound (k);
for (r.second = r.first;
r.second != this->end ();
++r.second)
{
if (!this->key_comp ().prefix (k, r.second->first))
break;
}
return r;
}
}
|