( i: I )
| 207 | |
| 208 | /** @internal */ |
| 209 | export const value = <const I>( |
| 210 | i: I |
| 211 | ): Matcher<I, Types.Without<never>, I, never, I> => makeValueMatcher(i, Either.left(i)) |
| 212 | |
| 213 | /** @internal */ |
| 214 | export const valueTags: { |
nothing calls this directly
no test coverage detected