#undef NDEBUG
#include <stdio.h>
auto main() -> int
{
assert(set2.count(1.0F) == 1);
return 0;
}
#define assert(...)
Definition cassert.hpp:19
constexpr auto for_each(InputIt first, InputIt last, UnaryFunc f) noexcept -> UnaryFunc
Applies the given function object f to the result of dereferencing every iterator in the range [first...
Definition for_each.hpp:20
A container that encapsulates fixed size arrays.
Definition array.hpp:48
static_set is an associative container that contains a sorted set of unique objects of type Key....
Definition static_set.hpp:29
constexpr auto contains(key_type const &key) const noexcept -> bool
Checks if there is an element with key equivalent to key in the container.
Definition static_set.hpp:317
constexpr auto begin() noexcept -> iterator
Returns an iterator to the first element of the set.
Definition static_set.hpp:90
constexpr auto end() noexcept -> iterator
Returns an iterator to the element following the last element of the set.
Definition static_set.hpp:100
constexpr auto insert(value_type &&value) -> pair< iterator, bool > requires(is_move_constructible_v< value_type >)
Inserts element into the container, if the container doesn't already contain an element with an equiv...
Definition static_set.hpp:164