Home | History | Annotate | Download | only in sensorservice

Lines Matching full:column_builder

219     // column_builder<> stores the matrix and knows which column to set
221 struct column_builder {
223 column_builder(mat& matrix) : matrix(matrix) { }
226 // operator << is not a method of column_builder<> so we can
229 // we just set the column and return the next column_builder<>
231 friend column_builder<PREV_COLUMN+1> operator << (
232 const column_builder<PREV_COLUMN>& lhs,
235 return column_builder<PREV_COLUMN+1>(lhs.matrix);
241 const column_builder<C-2>& lhs,
247 // return the next column_builder<>
248 column_builder<0> operator << (const vec<TYPE, R>& rhs) {
250 return column_builder<0>(*this);