| 309 | return std::holds_alternative<BorrowTy>(Type); |
| 310 | } |
| 311 | bool isStreamTy() const noexcept { |
| 312 | return std::holds_alternative<StreamTy>(Type); |
| 313 | } |
| 314 | bool isFutureTy() const noexcept { |
| 315 | return std::holds_alternative<FutureTy>(Type); |
| 316 | } |
no outgoing calls
no test coverage detected