MCPcopy Create free account
hub / github.com/PX4/eigen / set

Function set

test/stdlist_overload.cpp:37–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35
36template <class Container, class Position, class Value>
37void 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
44template<typename MatrixType>
45void check_stdlist_matrix(const MatrixType& m)

Callers 7

check_stdlist_matrixFunction · 0.70
check_stdlist_transformFunction · 0.70
check_stdlist_quaternionFunction · 0.70
relicense.pyFile · 0.50
setMethod · 0.50
setMethod · 0.50
setMethod · 0.50

Calls 1

beginMethod · 0.80

Tested by

no test coverage detected