{-# LANGUAGE CPP, FlexibleContexts, DataKinds, MonoLocalBinds #-}
#include "containers.h"
module Data.Map.Internal.DeprecatedShowTree where
import Data.Map.Internal (Map)
import Utils.Containers.Internal.TypeError
showTree :: Whoops "showTree has moved to Data.Map.Internal.Debug.showTree."
=> Map k a -> String
showTree :: forall k a.
Whoops "showTree has moved to Data.Map.Internal.Debug.showTree." =>
Map k a -> String
showTree Map k a
_ = String
forall a. HasCallStack => a
undefined
showTreeWith ::
Whoops "showTreeWith has moved to Data.Map.Internal.Debug.showTreeWith."
=> (k -> a -> String) -> Bool -> Bool -> Map k a -> String
showTreeWith :: forall k a.
Whoops
"showTreeWith has moved to Data.Map.Internal.Debug.showTreeWith." =>
(k -> a -> String) -> Bool -> Bool -> Map k a -> String
showTreeWith k -> a -> String
_ Bool
_ Bool
_ Map k a
_ = String
forall a. HasCallStack => a
undefined