使用模板haskell的多个函数定义

假设我有这样的数据类型:

data Color = Red | Blue | Green

我将如何使用templatehaskell生成这样的函数?

myShow Red   = ...
myShow Blue  = ...
myShow Green = ...

即我正在寻找基于模式匹配功能的多个定义。


{-# LANGUAGE TemplateHaskell #-}

module Test where 

import Language.Haskell.TH

data Color = Red | Blue | Green

myShow' :: Q [Dec]
myShow' = return [FunD (mkName "myShow") [mkClause 'Red, mkClause 'Blue, mkClause 'Green]]
  where mkClause n = Clause [ConP n []] (NormalB $ LitE $ StringL $ nameBase n) []
链接地址: http://www.djcxy.com/p/20207.html

上一篇: Multiple function definitions with template haskell

下一篇: Clustering using a custom distance metric for lat/long pairs