| 302 | return std::holds_alternative<OptionTy>(Type); |
| 303 | } |
| 304 | bool isResultTy() const noexcept { |
| 305 | return std::holds_alternative<ResultTy>(Type); |
| 306 | } |
| 307 | bool isOwnTy() const noexcept { return std::holds_alternative<OwnTy>(Type); } |
| 308 | bool isBorrowTy() const noexcept { |
| 309 | return std::holds_alternative<BorrowTy>(Type); |
no outgoing calls
no test coverage detected