My current approach to define a function of arbitrary arity is below, with A being an accumulator, E being the input argument type, and R being the result type.

combine :: A -> E -> A

class X r where
    foo :: A -> E -> r

instance X R where
    foo :: A -> E -> R


instance X r => X ( E -> r ) where
    foo :: A -> E -> E -> r
    foo ( a :: A ) ( x :: E ) =
        foo ( a `combine` e :: A )

doFoo = foo emptyA

But the minimum arity of foo is 1. The minimum for foo is still A -> E -> R, and doFoo is E -> R. I'd also like to have doFoo :: R. How?

link|improve this question

feedback

1 Answer

up vote 9 down vote accepted

What about

class X r where
    foo :: A -> r

instance X r => X (E -> r) where
    foo :: A -> E -> r
    foo a e = foo (combine a e)

?

You may want to have a look at the PrintfType instances. It's only because of them that I was able to provide an answer.

link|improve this answer
Hmm... I feel stupid now! How do I delete an SO question? – Dingfeng Quek Jul 11 '11 at 5:30
2  
You don't. This question may be useful for other people. – hammar Jul 11 '11 at 6:06
Another useful package to look at is quickcheck. It also provides functions with variadic arguments. – Masse Jul 11 '11 at 7:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.