Qore Programming Language Reference Manual
0.8.7
Main Page
Related Pages
Modules
Namespaces
Classes
All
Classes
Namespaces
Functions
Variables
Groups
Pages
Pseudo_QC_Nothing.dox.h
1
2
namespace
Qore {
4
5
class
<nothing>
:
public
<value>
{
6
7
public
:
9
23
SingleValueIterator
contextIterator
();
24
25
public
:
27
42
nothing
firstKey
();
43
44
public
:
46
61
nothing
firstValue
();
62
63
public
:
65
82
bool
hasKey
(softstring key);
83
84
public
:
86
103
bool
hasKeyValue
(softstring key);
104
105
public
:
107
121
SingleValueIterator
keyIterator
();
122
123
public
:
125
140
list
keys
();
141
142
public
:
144
159
nothing
lastKey
();
160
161
public
:
163
178
nothing
lastValue
();
179
180
public
:
182
195
int
lsize
();
196
197
public
:
199
211
SingleValueIterator
pairIterator
();
212
213
public
:
215
229
int
typeCode
();
230
231
public
:
233
248
list
values
();
249
};
250
};