| 1037 | public: |
| 1038 | template <typename Arg> |
| 1039 | constexpr auto operator|(Arg&& arg) const |
| 1040 | { |
| 1041 | return static_cast<F const&>(*this).operator()(std::forward<Arg>(arg)); |
| 1042 | } |
| 1043 | |
| 1044 | template <typename Arg> |
| 1045 | constexpr auto operator||(Arg&& arg) const |
nothing calls this directly
no test coverage detected