| 35 | |
| 36 | template <class Container, class Position, class Value> |
| 37 | void set(Container & c, Position position, const Value & value) |
| 38 | { |
| 39 | typename Container::iterator it = c.begin(); |
| 40 | std::advance(it, position); |
| 41 | *it = value; |
| 42 | } |
| 43 | |
| 44 | template<typename MatrixType> |
| 45 | void check_stdlist_matrix(const MatrixType& m) |
no test coverage detected