Files Classes Functions Hierarchy
#include <vectorreadin.h>
Public Member Functions | |
| template<class VEC , class T , class INDX > | |
| void | read (VEC &v, T const *abeg, T const *aend, INDX i0=0) |
Definition at line 49 of file vectorreadin.h.
| void vectorreadingD2primitive< PT >::read | ( | VEC & | v, | |
| T const * | abeg, | |||
| T const * | aend, | |||
| INDX | i0 = 0 | |||
| ) | [inline] |
Definition at line 55 of file vectorreadin.h.
00061 { 00062 assert((aend-abeg)%2==0); 00063 T * i = abeg; 00064 00065 for ( ; i != aend; ++i) 00066 { 00067 v[i0] = PT(*i,*(i+1)); 00068 ++i; ++i; 00069 } 00070 }
1.5.8