|
bool | SimTK::readOneTokenUnformatted (std::istream &in, String &token) |
| Read in the next whitespace-delimited token as a String, ignoring leading whitespace. More...
|
|
template<class T > |
bool | SimTK::readUnformatted (std::istream &in, T &v) |
| The default implementation of readUnformatted<T> reads in the next whitespace-separated token and then attempts to convert the whole thing into one value of type T. More...
|
|
template<class T > |
bool | SimTK::readUnformatted (std::istream &in, negator< T > &v) |
| Specialization for negator<T>: read as type T and convert. More...
|
|
template<class T > |
bool | SimTK::readUnformatted (std::istream &in, std::complex< T > &v) |
| Specialization for std::complex<T> (two space-separated T's). More...
|
|
template<class T > |
bool | SimTK::readUnformatted (std::istream &in, conjugate< T > &v) |
| Specialization for SimTK::conjugate<T> (same as std::complex<T>). More...
|
|
template<> |
bool | SimTK::readUnformatted< String > (std::istream &in, String &v) |
| Specialization for SimTK::String (just read token). More...
|
|
template<int M, class E , int S> |
bool | readUnformatted (std::istream &in, Vec< M, E, S > &v) |
| Specialize for Vec<M,E,S> to delegate to element type E, with spaces separating the elements. More...
|
|
template<int N, class E , int S> |
bool | readUnformatted (std::istream &in, Row< N, E, S > &v) |
| Specialize for Row<N,E,S> to delegate to element type E, with spaces separating the elements; format is same as Vec. More...
|
|
template<int M, int N, class E , int CS, int RS> |
bool | readUnformatted (std::istream &in, Mat< M, N, E, CS, RS > &v) |
| Specialize for Mat<M,N,E,CS,RS> delegating to Row<N,E,RS>. More...
|
|
template<int M, class E , int RS> |
bool | readUnformatted (std::istream &in, SymMat< M, E, RS > &v) |
| Specialize for SymMat<M,E,RS>. More...
|
|
template<int M, int N, class E , int CS, int RS>
bool readUnformatted |
( |
std::istream & |
in, |
|
|
Mat< M, N, E, CS, RS > & |
v |
|
) |
| |
|
related |
Specialize for Mat<M,N,E,CS,RS> delegating to Row<N,E,RS>.
template<int M, class E , int RS>
bool readUnformatted |
( |
std::istream & |
in, |
|
|
SymMat< M, E, RS > & |
v |
|
) |
| |
|
related |