| 3918 | } |
| 3919 | |
| 3920 | public: |
| 3921 | |
| 3922 | template <typename Func> |
| 3923 | decltype(auto) visit(Func&& visitor) & noexcept(visit_is_nothrow<Func&&, node&>) |
| 3924 | { |
| 3925 | return do_visit(static_cast<Func&&>(visitor), *this); |
| 3926 | } |
| 3927 | |
| 3928 | template <typename Func> |
| 3929 | decltype(auto) visit(Func&& visitor) && noexcept(visit_is_nothrow<Func&&, node&&>) |
nothing calls this directly
no test coverage detected