| 540 | { |
| 541 | public: |
| 542 | constexpr App(Unary &&unary, Pattern const &pattern) |
| 543 | : mUnary{std::forward<Unary>(unary)}, mPattern{pattern} {} |
| 544 | constexpr auto const &unary() const { return mUnary; } |
| 545 | constexpr auto const &pattern() const { return mPattern; } |
| 546 |
nothing calls this directly
no outgoing calls
no test coverage detected