| 51 | typedef typename T::BaseType BaseType; |
| 52 | static unsigned int dimensions() { return T::dimensions(); }; |
| 53 | static BaseType get( const T &v, unsigned int i ) { return v[i]; }; |
| 54 | static void set( T &v, unsigned int i, BaseType x ) { v[i] = x; }; |
| 55 | }; |
| 56 |
no outgoing calls
no test coverage detected