You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -509,6 +508,7 @@ Curried version of `equals` for `Either`. Compares `this` to another `Either`, r
509
508
510
509
```ts
511
510
import { equals, Right } from'holo-fn/either';
511
+
import { pipe } from'remeda';
512
512
513
513
const result =pipe(
514
514
newRight(10),
@@ -525,9 +525,9 @@ console.log(result); // true
525
525
Combines an array of `Either` values into a single `Either`. Returns `Right` with all values if all are `Right`, or `Left` with all errors if any are `Left`.
526
526
527
527
```ts
528
-
import { all, right, left } from'holo-fn/either';
528
+
import { all, left, right, typeEither } from'holo-fn/either';
Combines an array of `Maybe` values into a single `Maybe` containing an array. Returns `Just` with all values if all are `Just`, or `Nothing` if any is `Nothing`.
321
322
322
323
```ts
323
-
import { all, just, nothing } from'holo-fn/maybe';
324
+
import { all, just, nothing, typeMaybe } from'holo-fn/maybe';
0 commit comments