( self: Micro<Micro<A, E, R>, E2, R2> )
| 1562 | * @category mapping & sequencing |
| 1563 | */ |
| 1564 | export const flatten = <A, E, R, E2, R2>( |
| 1565 | self: Micro<Micro<A, E, R>, E2, R2> |
| 1566 | ): Micro<A, E | E2, R | R2> => flatMap(self, identity) |
| 1567 | |
| 1568 | /** |
| 1569 | * Transforms the success value of the `Micro` effect with the specified |