HelenOS sources

unordered_set      86 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 : unordered_set(default_bucket_count_)
unordered_set     102 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 : unordered_set{bucket_count, hf, eql, alloc}
unordered_set     107 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_set(const unordered_set& other)
unordered_set     108 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 : unordered_set{other, other.allocator_}
unordered_set     111 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_set(unordered_set&& other)
unordered_set     119 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_set(const unordered_set& other, const allocator_type& alloc)
unordered_set     123 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_set(unordered_set&& other, const allocator_type& alloc)
unordered_set     132 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 : unordered_set{bucket_count, hf, eql, alloc}
unordered_set     138 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 : unordered_set{bucket_count, hasher{}, key_equal{}, alloc}
unordered_set     142 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 : unordered_set{bucket_count, hf, key_equal{}, alloc}
unordered_set     148 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 : unordered_set{first, last, bucket_count, hasher{}, key_equal{}, alloc}
unordered_set     154 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 : unordered_set{first, last, bucket_count, hf, key_equal{}, alloc}
unordered_set     159 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 : unordered_set{init, bucket_count, hasher{}, key_equal{}, alloc}
unordered_set     164 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 : unordered_set{init, bucket_count, hf, key_equal{}, alloc}
unordered_set     170 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_set& operator=(const unordered_set& other)
unordered_set     178 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_set& operator=(unordered_set&& other)
unordered_set     189 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_set& operator=(initializer_list<value_type>& init)
unordered_set     319 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             void swap(unordered_set& other)
unordered_set     452 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             friend bool operator==(const unordered_set<K, H, P, A>&,
unordered_set     453 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                                    const unordered_set<K, H, P, A>&);
unordered_set     873 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp     void swap(unordered_set<Key, Hash, Pred, Alloc>& lhs,
unordered_set     874 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp               unordered_set<Key, Hash, Pred, Alloc>& rhs)
unordered_set     889 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp     bool operator==(const unordered_set<Key, Hash, Pred, Alloc>& lhs,
unordered_set     890 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                     const unordered_set<Key, Hash, Pred, Alloc>& rhs)
unordered_set     896 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp     bool operator!=(const unordered_set<Key, Hash, Pred, Alloc>& lhs,
unordered_set     897 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                     const unordered_set<Key, Hash, Pred, Alloc>& rhs)
unordered_set      59 uspace/lib/cpp/src/__bits/test/unordered_set.cpp         std::unordered_set<int> s1{src1};
unordered_set      66 uspace/lib/cpp/src/__bits/test/unordered_set.cpp         std::unordered_set<int> s2{src1.begin(), src1.end()};
unordered_set      72 uspace/lib/cpp/src/__bits/test/unordered_set.cpp         std::unordered_set<int> s3{s1};
unordered_set      78 uspace/lib/cpp/src/__bits/test/unordered_set.cpp         std::unordered_set<int> s4{std::move(s1)};
unordered_set     108 uspace/lib/cpp/src/__bits/test/unordered_set.cpp         std::unordered_set<int> set1{};
unordered_set     126 uspace/lib/cpp/src/__bits/test/unordered_set.cpp         std::unordered_set<std::string> set2{};
unordered_set     151 uspace/lib/cpp/src/__bits/test/unordered_set.cpp         std::unordered_set<int> set3{};
HelenOS homepage, sources at GitHub