aboutsummaryrefslogtreecommitdiff
path: root/hsm-core/Hsm/Core/Fsm.hs
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2025-01-14 15:58:56 -0800
committerPaul Oliver <contact@pauloliver.dev>2025-01-24 16:34:31 -0800
commit7c360b79ee2e3230e6e5fe76c102dd688f9cf7b9 (patch)
tree6ab893160c4d50a09d24f593a5dd4541efa1c43a /hsm-core/Hsm/Core/Fsm.hs
parentdd9aa4a851829c792fc034d3169ef7e90ea899b4 (diff)
Adds minimal documentation
Diffstat (limited to 'hsm-core/Hsm/Core/Fsm.hs')
-rw-r--r--hsm-core/Hsm/Core/Fsm.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/hsm-core/Hsm/Core/Fsm.hs b/hsm-core/Hsm/Core/Fsm.hs
index 43fa497..6f9910e 100644
--- a/hsm-core/Hsm/Core/Fsm.hs
+++ b/hsm-core/Hsm/Core/Fsm.hs
@@ -26,6 +26,8 @@ data FsmOutput i o env sta =
data FsmResult i o env sta =
FsmResult o sta (FsmState i o env sta)
+-- Finite state machines allow processing of stream elements using pure
+-- functions. One or more FSMs can be included within a `Streamly` pipeline.
fsm ::
forall i o env sta es.
( Log :> es