How to get rid of $(…) and [| … |] syntax when using a Template Haskell function?

 ̄綄美尐妖づ 提交于 2019-12-05 00:13:01

The syntax is there for a reason; to inform the reader that there is compile-time magic going on here. You can only eliminate the $(...) when your splice is at the top level.

However, we can eliminate the [| ... |] and also make the code more type-safe by taking in a Name instead of an Exp:

isA nam = do
    nn <- newName "p"
    lamE [varP nn] $ caseE (varE nn) [
                       match (conP nam [wildP]) ( normalB [| True |] ) [],
                       match wildP ( normalB [| False |] ) [] 
                     ]

To use this, you'd write $(isA 'Left), which is a little easier on the eyes.

As a bonus, if you try giving it something other than a Name, you get a type error instead of an irrefutable pattern match error.

See also: Template Haskell Syntax

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!