0
votes
1answer
9 views
Getting Kind mis-match error when trying to use existential quantification
Would like to declare
data (Coord a) => Triangle a = Triangle{t0 :: a, t1 :: a, t2 :: a}
However I am getting
Geometry.hs:15:19:Kind mis-match
Expected kind * -> *', but p' has …
5
votes
3answers
205 views
When choosing a functional programming language for use with LLVM, what are the trade-offs?
Let's assume for the moment that C++ is not a functional programming language. If you want to write a compiler using LLVM for the back-end, and you want to use a functional programming language and …
6
votes
5answers
239 views
In Functional Programming, is it considered a bad practice to have incomplete pattern matchings
Is it generally considered a bad practice to use non-exhaustive pattern machings in functional languages like Haskell or F#, which means that the cases specified don't cover all possible input cases?
…
1
vote
8answers
309 views
It’s a good idea use ruby for socket programming?
My language of choice is Ruby, but I know because of twitter that Ruby can't handle a lot of requests. It is a good idea using it for socket development? or Should I use a functional language like …
3
votes
2answers
102 views
haskell global var
The task is to create dynamically linked library, which encapsulates database hard work. Due to some design limitations I have a defined interface, which consist of numerous functions. Each function …
11
votes
16answers
2k views
Learning Scala or Haskell
I'm considering dipping my toe in the functional programming world, and wondering if it would be better to start with Scala or Haskell. I'm coming at this primarily as a Python programmer. My only …
3
votes
4answers
131 views
Type Matching in Haskell
If SomeType is defined as:
data SomeType = X {myBool :: Bool}
| Y {myString :: String}
| Z {myString :: String}
and I will update an arbitrary X, dependent of his …
2
votes
4answers
202 views
Compiling to idiomatic C
Are there any compilers out there for function or lisp-ish languages that compile to idiomatic C? Most compilers out there seem to provide something resembling a machine language composed of C …
1
vote
5answers
137 views
Haskell question: constraining data types to use show
Code:
data Exp a = Const a | Eq (Exp a) (Exp a)
I want the Const a to contain a value of type show so that i can print it later. So in C# i would write:
class Const : Exp { IShow X; }
class Eq : …
0
votes
4answers
143 views
Choosing among alternatives in a Haskell algebraic datatype
When type X is defined as:
data X =
X { sVal :: String } |
I { iVal :: Int } |
B { bVal :: Bool }
and I want the Int inside an X value, if there is one, otherwise zero.
returnInt :: …
7
votes
6answers
268 views
How Functional language are different from the language implementation point of view.
There is the whole new paradigm of "functional programming", which needs a total change of thought patterns compared to procedural programming. It uses higher order functions, purity, monads, etc., …
0
votes
2answers
135 views
Haskell IO with Numbers
Can anyone help with this exersise?
Write a program which asks the user
for the base and height of a right
angled triangle, calculates its area
and prints it to the screen. The
interaction …
1
vote
2answers
65 views
Ambiguous type variable
Related to my earlier question on traversing data structures, I'm having a problem making my code generic when I use it along with the uniplate package. I'm dealing with the data structures in the …
2
votes
2answers
140 views
reinventing the wheels: Node.JS/Event-driven programming v.s. Functional Programming?
Now there's all the hype lately about Node.JS, an event driven framework using Javascript callbacks. To my limited understanding, its primary advantage seems to be that you don't have to wait step by …
5
votes
3answers
304 views
Haskell list comprehensions in C#
The following code is in Haskell. How would I write similar function in C#?
squareArea xs = [pi * r^2 | r <- xs]
Just to clarify... above code is a function, that takes as input a list …
