| 276 | { |
| 277 | kind k; |
| 278 | bool operator()(std::nullptr_t) && { return k == kind::null; } |
| 279 | bool operator()(bool) && { return k == kind::bool_; } |
| 280 | bool operator()(std::int64_t) && { return k == kind::int64; } |
| 281 | bool operator()(std::uint64_t) && { return k == kind::uint64; } |
nothing calls this directly
no outgoing calls
no test coverage detected