From adcb79ccd7e7db6fdaabaee36b7c30b59cd00266 Mon Sep 17 00:00:00 2001 From: Automatic website updater <> Date: Fri, 27 Jun 2025 23:40:31 +0100 Subject: [PATCH] Automatic website update --- index.html | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/index.html b/index.html index 0629ccb..34ccfa5 100644 --- a/index.html +++ b/index.html @@ -210,7 +210,7 @@ Next: ,
Macro: fibers-let a
-

Undocumented macro. +

Let, but run each binding in a fiber in parallel.

@@ -219,7 +219,8 @@ Next: ,
Macro: fibers-parallel a
-

Undocumented macro. +

Run each expression in parallel. If any expression raises an exception, +this will be raised after all exceptions have finished.

@@ -279,7 +280,7 @@ Next: ,
Procedure: fibers-batch-for-each a b . rest
-

Undocumented procedure. +

Call PROC on LISTS, running up to PARALLELISM-LIMIT fibers in parallel.

@@ -288,7 +289,9 @@ Next: ,
Procedure: fibers-batch-map a b . rest
-

Undocumented procedure. +

Map PROC over LISTS in parallel, with a PARALLELISM-LIMIT. If any of +the invocations of PROC raise an exception, this will be raised once all +of the calls to PROC have finished.

@@ -297,7 +300,7 @@ Next: ,
Procedure: fibers-for-each a . rest
-

Undocumented procedure. +

Call PROC on LISTS, running up to 20 fibers in parallel.

@@ -306,7 +309,9 @@ Next: ,
Procedure: fibers-map a . rest
-

Undocumented procedure. +

Map PROC over LISTS in parallel, running up to 20 fibers in PARALLEL. If +any of the invocations of PROC raise an exception, this will be raised +once all of the calls to PROC have finished.

@@ -315,7 +320,9 @@ Next: ,
Procedure: fibers-map-with-progress _ _ KEY: #:report
-

Undocumented procedure. +

Map PROC over LISTS, calling #:REPORT if specified after each invocation +of PROC finishes. REPORT is passed the results for each element of +LISTS, or #f if no result has been received yet.