Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 480 Bytes

Either.ts.md

File metadata and controls

38 lines (24 loc) · 480 Bytes
title nav_order parent
Either.ts
3
Modules

Either overview

Added in v1.6.0


Table of contents


_left (function)

Signature

export const _left = <L, A>(): Prism<Either<L, A>, L> => ...

Added in v1.6.0

_right (function)

Signature

export const _right = <L, A>(): Prism<Either<L, A>, A> => ...

Added in v1.6.0