2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
41#ifndef WEB_CISTRINGMAP_H
42#define WEB_CISTRINGMAP_H
44#ifndef DOXYGEN_SHOULD_SKIP_THIS
53 bool ciContains(
const std::string& str1,
const std::string& str2);
54 bool ciEquals(
const std::string& str1,
const std::string& str2);
57 bool operator()(
const std::string& a,
const std::string& b)
const;
60 template <
typename ValueT>
63 using std::map<std::string, ValueT,
ciLess>::map;
bool ciEquals(const std::string &str1, const std::string &str2)
bool ciContains(const std::string &str1, const std::string &str2)
bool operator()(const std::string &a, const std::string &b) const