The polyvariadic tag has no wiki summary.
18
votes
1answer
590 views
How does Haskell printf work?
Haskell's type safety is second to none only to dependently-typed languages. But there is some deep magic going on with Text.Printf that seems rather type-wonky.
> printf "%d\n" 3
3
> printf ...
16
votes
4answers
948 views
How to create a polyvariadic haskell function?
I need a function which takes an arbitrary number of arguments (All of the same type), does something whith them and afterwards gives a result back. A list of arguments is impracticable in my specific ...
12
votes
3answers
796 views
Polyvariadic Functions in Haskell
After reading this article on writing polyvariadic functions in Haskell, I tried to write some of my own.
At first I thought I'd try to generalize it - so I could have a function that returned ...
8
votes
4answers
529 views
Haskell Polyvariadic Function With IO
Is it possible to have a function that takes a foreign function call where some of the foreign function's arguments are CString and return a function that accepts String instead?
Here's an example of ...
6
votes
1answer
156 views
How to define an arbitrary arity function in Haskell, which includes an arity of 0?
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 ...
5
votes
4answers
79 views
Specifying “any subclass” in a C# type constraint rather than “one particular subclass”
If I would like to write a method that takes a variable number of "TDerived" where TDerived is any subclass of a class "Base", is there any way to do this?
The following code only works with a single ...
3
votes
1answer
136 views
variadic bind in Haskell
The following code is an attempt to write a variadic function that acts like this:
bind_variadic mx f = mx >>= f
bind_variadic mx my f = do { x <- mx; y <- my; f x y }
I can write it ...
1
vote
1answer
297 views
Help In Declaring Variable Number Of Arguments
High Guys,
I have to define a polymorphic datatype for a tree that can have multiple nodes. Each node can have any number of children and a vlaue. This type will always have at least one node. I ...