Zen
A cross-platform functional programming language
|
Intrinsic holder type. More...
#include <zbl.hpp>
Public Member Functions | |
V & | insert (V *v) |
Insert a new value. | |
void | remove (V &v) |
Remove a contained value. | |
Private Types | |
typedef QSet< V * > | List |
The list type. | |
Private Attributes | |
List | _list |
The list. |
Intrinsic holder type.
This is a list class which does not delete contained elements when removed
V& insert | ( | V * | v | ) | [inline] |
Insert a new value.
v | New value to insert |
void remove | ( | V & | v | ) | [inline] |
Remove a contained value.
v | Reference to value to be deleted |