forked from open-eid/libdigidocpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalgorithm.h
More file actions
68 lines (58 loc) · 1.88 KB
/
algorithm.h
File metadata and controls
68 lines (58 loc) · 1.88 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
* libdigidocpp
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#pragma once
#include <algorithm>
namespace digidoc
{
template<typename C, typename P>
[[nodiscard]]
constexpr bool all_of(const C &list, P pred)
{
return std::all_of(list.begin(), list.end(), std::forward<P>(pred));
}
template<typename C, typename P>
[[nodiscard]]
constexpr bool any_of(const C &list, P pred)
{
return std::any_of(list.begin(), list.end(), std::forward<P>(pred));
}
template<typename C, typename T>
[[nodiscard]]
constexpr bool contains(const C &list, T value)
{
return std::find(list.begin(), list.end(), std::forward<T>(value)) != list.end();
}
template<typename C, typename P>
[[nodiscard]]
constexpr bool none_of(const C &list, P pred)
{
return std::none_of(list.begin(), list.end(), std::forward<P>(pred));
}
template<typename T>
[[nodiscard]]
constexpr bool starts_with(T str, std::string_view needle) {
return str.size() >= needle.size() && str.compare(0, needle.size(), needle) == 0;
}
[[nodiscard]]
constexpr auto trim_prefix(std::string_view src)
{
constexpr std::string_view whitespace {" \n\r\f\t\v"};
return src.substr(std::min<size_t>(src.find_first_not_of(whitespace), src.size()));
}
}