blob: c4245175544b4e41342edadd7764a4bea6a24086 [file] [log] [blame]
Olivier Deprezf4ef2d02021-04-20 13:36:24 +02001//===- StringSet.h - An efficient set built on StringMap --------*- C++ -*-===//
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01002//
Andrew Walbran16937d02019-10-22 13:54:20 +01003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01006//
7//===----------------------------------------------------------------------===//
8//
9// StringSet - A set-like wrapper for the StringMap.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_ADT_STRINGSET_H
14#define LLVM_ADT_STRINGSET_H
15
16#include "llvm/ADT/StringMap.h"
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010017
18namespace llvm {
19
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020020/// StringSet - A wrapper for StringMap that provides set-like functionality.
21template <class AllocatorTy = MallocAllocator>
22class StringSet : public StringMap<NoneType, AllocatorTy> {
23 using Base = StringMap<NoneType, AllocatorTy>;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010024
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020025public:
26 StringSet() = default;
27 StringSet(std::initializer_list<StringRef> initializer) {
28 for (StringRef str : initializer)
29 insert(str);
30 }
31 explicit StringSet(AllocatorTy a) : Base(a) {}
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010032
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020033 std::pair<typename Base::iterator, bool> insert(StringRef key) {
34 return Base::try_emplace(key);
35 }
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010036
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020037 template <typename InputIt>
38 void insert(const InputIt &begin, const InputIt &end) {
39 for (auto it = begin; it != end; ++it)
40 insert(*it);
41 }
Andrew Walbran3d2c1972020-04-07 12:24:26 +010042
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020043 template <typename ValueTy>
44 std::pair<typename Base::iterator, bool>
45 insert(const StringMapEntry<ValueTy> &mapEntry) {
46 return insert(mapEntry.getKey());
47 }
48
49 /// Check if the set contains the given \c key.
50 bool contains(StringRef key) const { return Base::FindKey(key) != -1; }
51};
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010052
53} // end namespace llvm
54
55#endif // LLVM_ADT_STRINGSET_H