Skip to content

Commit 1d2740b

Browse files
committed
docs: update changelog
1 parent 74b7ea8 commit 1d2740b

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

docs/changelog.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,22 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
---
88

9+
## [[unreleased]]() - No date
10+
11+
### Added
12+
- New helpers functions:
13+
- Maybe:
14+
- just(value: T): Maybe<T>: Creates a `Just` value representing the presence of a value.
15+
- nothing<T = never>(): Maybe<T>: Creates a `Nothing` value representing the absence of a value.
16+
- Either:
17+
- left<L, R = never>(value: L): Either<L, R>: Creates a `Left` value representing a failure or error.
18+
- right<L, R>(value: R): Either<L, R>: Creates a `Right` value representing a success.
19+
- Result:
20+
- ok<T, E>(value: T): Result<T, E>: Creates an `Ok` value representing the success of an operation with a value.
21+
- err<T, E>(error: E): Result<T, E>: Creates an `Err` value representing a failure of an operation with an error.
22+
23+
---
24+
925
## [[0.2.0]](https://github.com/richecr/holo-fn/releases/tag/v0.2.0) - 2025-04-26
1026

1127
### Added

0 commit comments

Comments
 (0)