Files
RustAst/tests
Brummel 6d24c5b64c Add pipe-buffered function
Implements `pipe-buffered`, a new primitive that allows accumulating
values from multiple input streams into internal series buffers before
executing a user-provided lambda. This is useful for implementing
lookback logic and ensuring that the lambda only executes when
sufficient data is available in all input streams.

The function takes a `lookback` integer, input streams, and a lambda.
The lambda receives `Series` objects for each input, allowing indexed
access to past values. The `pipe-buffered` function manages the
buffering and fill-gate logic.
2026-03-30 10:54:32 +02:00
..
2026-03-29 18:59:38 +02:00
2026-03-30 10:54:32 +02:00
2026-03-27 09:26:30 +01:00