class ShowText a where showText :: a -> Text
我找不到任何地方。为什么?
更新(2016年2月12日)
basic-prelude图书馆提供的表演功能也直接呈现:
show :: Show a => a -> Text
basic-prelude还有比text-show更少的依赖性。如果要使用basic-prelude,请通过将以下内容添加到源文件的顶部来保存编译头痛:
{-# LANGUAGE NoImplicitPrelude #-}