MCPcopy Create free account
hub / github.com/dblalock/bolt / VectorBlock

Method VectorBlock

cpp/src/external/eigen/src/Core/VectorBlock.h:74–81  ·  view source on GitHub ↗

Dynamic-size constructor */

Source from the content-addressed store, hash-verified

72 /** Dynamic-size constructor
73 */
74 EIGEN_DEVICE_FUNC
75 inline VectorBlock(VectorType& vector, Index start, Index size)
76 : Base(vector,
77 IsColVector ? start : 0, IsColVector ? 0 : start,
78 IsColVector ? size : 1, IsColVector ? 1 : size)
79 {
80 EIGEN_STATIC_ASSERT_VECTOR_ONLY(VectorBlock);
81 }
82
83 /** Fixed-size constructor
84 */

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected