I want a function like following, is this possible? in fact, I don't know if the type Pattern exists.
fun1 a :: Pattern a -> a -> Bool
fun1 pattern a = case a of
pattern -> True
_ -> False
|
I want a function like following, is this possible? in fact, I don't know if the type Pattern exists.
|
|||||
|
|
Check out the Functional Pearl, Type Safe Pattern Combinators. A bit of Googling shows that there is a Hackage package based on it as well. |
|||
|
|
|
I don't think this is possible in Haskell. However, in your case, the pattern is effectively just a function of type Now, if you wanted to do something more general, like being able to use the matched symbols from the pattern in the body of If you want this kind of behavior, check out the book Pattern Calculus where the author develops and formalizes a language with more general pattern-matching features than Haskell. It makes patterns a first-class citizen, unlike Haskell. I haven't actually finished this book yet, but I'm pretty sure that code like that is exactly what you would be able to write, among other things. The author built a language around his ideas about pattern matching called bondi; it's probably also worth checking out, especially if you don't want to bother with the book. I don't know if it's ready for practical use, but it's certainly interesting. |
|||||||
|
|
I'm pretty sure that you are looking for View Patterns. (see trac/ghc/wiki or ghc/user-manual/syntax-extensions) Every function is a "Pattern":
|
|||||||
|