| 573 | } |
| 574 | |
| 575 | shape shape::as_standard() const |
| 576 | { |
| 577 | if(not this->dynamic()) |
| 578 | return {this->type(), this->lens()}; |
| 579 | else |
| 580 | return *this; |
| 581 | } |
| 582 | |
| 583 | shape shape::with_lens(type_t t, const std::vector<std::size_t>& l) const |
| 584 | { |
no test coverage detected