yampa-test-0.14.7: Testing library for Yampa.
Copyright(c) Ivan Perez 2017-2022
LicenseBSD-style (see the LICENSE file in the distribution)
Maintainerivan.perez@keera.co.uk
Safe HaskellSafe-Inferred
LanguageHaskell2010

FRP.Yampa.Debug

Description

Debug FRP networks by inspecting their behaviour inside.

Synopsis

Documentation

traceSF :: Show a => SF a a Source #

Signal Function that prints the value passing through using trace.

traceSFWith :: (a -> String) -> SF a a Source #

Signal Function that prints the value passing through using trace, and a customizable show function.

traceSFWithIO :: (a -> IO b) -> SF a a Source #

Execute an IO action using unsafePerformIO at every step, and ignore the result.