Field3D
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Classes
|
Functions
Templated utility classes
Classes and functions used to implement this library
Classes
class
FieldTraits< Data_T >
Functions
template<class Iter_T >
void
advance
(Iter_T &iter, int num)
template<class Iter_T >
void
advance
(Iter_T &iter, int num, const Iter_T &end)
Detailed Description
Function Documentation
template<class Iter_T >
void advance
(
Iter_T &
iter
,
int
num
)
Definition at line
1160
of file
Field.h
.
1161
{
1162
if
(num <= 0) {
1163
return
;
1164
}
1165
for
(
int
i=0; i<num; ++i, ++iter) {
1166
// Empty
1167
}
1168
}
template<class Iter_T >
void advance
(
Iter_T &
iter
,
int
num
,
const Iter_T &
end
)
Definition at line
1174
of file
Field.h
.
1175
{
1176
if
(num <= 0) {
1177
return
;
1178
}
1179
for
(
int
i=0; i<num && iter != end; ++i, ++iter) {
1180
// Empty
1181
}
1182
}
Generated by
1.8.11