(a: A)
| 937 | * @category constructors |
| 938 | */ |
| 939 | export const succeedSome = <A>(a: A): Micro<Option.Option<A>> => succeed(Option.some(a)) |
| 940 | |
| 941 | /** |
| 942 | * Creates a `Micro` effect that succeeds with `None`. |
nothing calls this directly
no test coverage detected
searching dependent graphs…