(self: Micro<A, E, R>)
| 2894 | * @category error handling |
| 2895 | */ |
| 2896 | export const ignore = <A, E, R>(self: Micro<A, E, R>): Micro<void, never, R> => |
| 2897 | matchEffect(self, { onFailure: (_) => void_, onSuccess: (_) => void_ }) |
| 2898 | |
| 2899 | /** |
| 2900 | * Ignore any expected errors of the given `Micro` effect, returning `void`. |