yampa-test-0.13.6: Testing library for Yampa.
Safe HaskellNone
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.