Euphoria
hash.set.h
Go to the documentation of this file.
1#pragma once
2
4
5#include <set>
6
7namespace eu
8{
9
10struct HshSt
11{
12 std::set<Hsh> data;
14
15 void add(const Hsh& h);
16 HshSt combine(const Hsh& h) const;
17
18 bool contains(const Hsh& h) const;
19 bool is(const HshSt& h) const;
20};
21
22}
Definition assert.h:118
Hsh primary
Definition hash.set.h:13
void add(const Hsh &h)
bool contains(const Hsh &h) const
std::set< Hsh > data
Definition hash.set.h:12
HshSt combine(const Hsh &h) const
bool is(const HshSt &h) const
Hash of a non-owning string.
Definition hash.string.h:27