| 52 | |
| 53 | public: |
| 54 | NullaryOp(Index rows, Index cols, Index batches, const _NullaryFunctor& functor) |
| 55 | : rows_(rows), cols_(cols), batches_(batches), functor_(functor) |
| 56 | {} |
| 57 | explicit NullaryOp(const _NullaryFunctor& functor) |
| 58 | : rows_(_Rows), cols_(_Columns), batches_(_Batches), functor_(functor) |
| 59 | { |
nothing calls this directly
no outgoing calls
no test coverage detected