module TextShow.Control.Monad.ST (showbST) where
import Control.Monad.ST (ST)
import Data.Text.Lazy.Builder (Builder)
import TextShow.Classes (TextShow(showb), TextShow1(..), TextShow2(..))
#include "inline.h"
showbST :: ST s a -> Builder
showbST = showb
instance TextShow (ST s a) where
showb = showbPrecWith undefined 0
INLINE_INST_FUN(showb)
instance TextShow1 (ST s) where
showbPrecWith = showbPrecWith2 undefined
INLINE_INST_FUN(showbPrecWith)
instance TextShow2 ST where
showbPrecWith2 _ _ _ _ = "<<ST action>>"
INLINE_INST_FUN(showbPrecWith2)