#include <matrix.hpp>
Definition at line 322 of file matrix.hpp.
| typedef implementation<matrix_linear,V> Mat |
Definition at line 324 of file matrix.hpp.
| matrix_iterator_rep | ( | const matrix< C, V > & | m2, | |
| nat | c = Mat::def_cols | |||
| ) | [inline] |
Definition at line 335 of file matrix.hpp.
00335 : 00336 iterator_rep<C> (CF(m)), m(m2), i(0), j(0), nc(c) {} };
| void advance | ( | ) | [inline, protected] |
Definition at line 332 of file matrix.hpp.
References mmx::cols().
00332 { j++; if (j >= cols(m)) { j=0; i++; } }
| C current | ( | ) | [inline, protected] |
Definition at line 333 of file matrix.hpp.
| bool is_busy | ( | ) | [inline, protected] |
1.6.1