-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update ocamlformat version.
- Loading branch information
Showing
36 changed files
with
1,036 additions
and
1,074 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
profile = default | ||
version = 0.26.2 | ||
version = 0.27.0 | ||
|
||
exp-grouping=preserve |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
(** Lock-free bounded Queue. | ||
(** Lock-free bounded Queue. | ||
This module implements a lock-free bounded queue based on Michael-Scott's queue | ||
algorithm. Adding a capacity to this algorithm adds a general overhead to the | ||
operations, and thus, it is recommended to use the unbounded queue | ||
{!Saturn.Queue} if you don't need it. | ||
*) | ||
This module implements a lock-free bounded queue based on Michael-Scott's | ||
queue algorithm. Adding a capacity to this algorithm adds a general overhead | ||
to the operations, and thus, it is recommended to use the unbounded queue | ||
{!Saturn.Queue} if you don't need it. *) | ||
|
||
include Bounded_queue_intf.BOUNDED_QUEUE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
(** Optimized lock-free bounded Queue. | ||
(** Optimized lock-free bounded Queue. | ||
This module implements a lock-free bounded queue based on Michael-Scott's queue | ||
algorithm. Adding a capacity to this algorithm adds a general overhead to the | ||
operations, and thus, it is recommended to use the unbounded queue | ||
{!Saturn.Queue} if you don't need it. | ||
*) | ||
This module implements a lock-free bounded queue based on Michael-Scott's | ||
queue algorithm. Adding a capacity to this algorithm adds a general overhead | ||
to the operations, and thus, it is recommended to use the unbounded queue | ||
{!Saturn.Queue} if you don't need it. *) | ||
|
||
include Bounded_queue_intf.BOUNDED_QUEUE |
Oops, something went wrong.