Skip to content

Commit 5df5681

Browse files
committed
Added priority queue to home and features page
1 parent a092aa4 commit 5df5681

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

‎src/jbake/content/features.adoc

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Functional Java provides abstractions for the following types:
1919
** Immutable, in-memory singly linked list (`fj.data.List`).
2020
** Immutable lazy singly linked list (`fj.data.Stream`).
2121
** A package (`fj.data.fingertrees`) providing 2-3 finger trees for a functional representation of persistent sequences, supporting access to the ends in amortized O(1) time.
22+
** Immutable priority queue based on finger trees (`fj.data.PriorityQueue`).
2223
** Type-safe heterogeneous list (`fj.data.hlist`) for lists of elements of differing types without sacrificing type-safety.
2324
** Immutable set implementation using a red/black tree (`fj.data.Set`).
2425
** Immutable multi-way tree - aka rose tree (`fj.data.Tree`).

‎src/jbake/content/index.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The library is intended for use in production applications and is thoroughly tes
1515
Functional Java provides abstractions for the following types:
1616

1717
* Basic Data Structures - total and partial functions, products, unit, option, unbiased and right biased unions (either and validation), void.
18-
* Immutable Collections - array, list, vector, stream, set, map, finger tree, heterogenous list, difference lists.
18+
* Immutable Collections - array, list, vector, stream, set, map, finger tree, priority queue, heterogenous list, difference lists.
1919
* Other Abstractions - monoid, semigroup, natural, random number generator, reader, writer, state, input/output, parser, zipper, specification based testing, actors, concurrency, optics (lens, prism, fold, traversal and others) and type conversion.
2020

2121
See the link:features.html[features page] for a brief description of each of these types.

0 commit comments

Comments
 (0)