| 66 | } |
| 67 | |
| 68 | nd::array eval() const |
| 69 | { |
| 70 | if (a_.is_dynamic() || a_.dimensions() > 1) { |
| 71 | return flatten(a_); |
| 72 | } |
| 73 | return nd::eval(a_); |
| 74 | } |
| 75 | |
| 76 | constexpr bool is_dynamic() const noexcept |
| 77 | { |
nothing calls this directly
no test coverage detected