Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ A collection of functionality that extend the official Flix library.

## Modules

- `Extras.DelayList` — a lazy list whose elements are computed on demand.
- `Extras.DelayMap` — a map whose values are computed on demand.
- `Extras.Graph` — functions on directed graphs represented as collections of edges.
- `Extras.Queue` — an immutable first-in, first-out queue.

Expand Down
2 changes: 2 additions & 0 deletions src/Extras.flix
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
/// The `Extras` module is a collection of submodules that extend the official
/// Flix library, each offering a self-contained piece of functionality:
///
/// - `Extras.DelayList` is a lazy list whose elements are computed on demand.
/// - `Extras.DelayMap` is a map whose values are computed on demand.
/// - `Extras.Graph` is a library of functions on directed graphs represented
/// as collections of edges.
/// - `Extras.Queue` is an immutable first-in, first-out queue.
Expand Down
Loading
Loading