Zen
A cross-platform functional programming language
|
Intrinsic stringset type. More...
#include <zbl.hpp>
Public Member Functions | |
stringset () | |
Default constructor. | |
void | clear () |
Empty the list. | |
void | insert (const string &v) |
Add a string to the list. | |
bool | has (const string &v) const |
Check for a string in the list. | |
Private Attributes | |
QSet< QString > | _list |
List of strings. |
Intrinsic stringset type.
bool has | ( | const string & | v | ) | const [inline] |
Check for a string in the list.
v | String to find |
void insert | ( | const string & | v | ) | [inline] |
Add a string to the list.
v | string to add |