active questions tagged haskell - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T07:43:59Z http://stackoverflow.com/feeds/tag/haskell http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1814061/convert-python-to-haskell-lambda-calculus 0 Convert Python to Haskell / Lambda calculus Masi 2009-11-28T23:03:06Z 2009-11-29T07:02:10Z <p><strong>What is the Python code in Haskell and Lambda calculus?</strong></p> <pre><code>def f1(): x = 77 def f2(): print x f2 f1 </code></pre> <p>My attempt in lambda calculus</p> <pre><code>\x. 77 (\x.x) </code></pre> http://stackoverflow.com/questions/1813575/its-a-good-idea-use-ruby-for-socket-programming 1 It's a good idea use ruby for socket programming? Hector Villalobos 2009-11-28T19:47:04Z 2009-11-29T00:26:59Z <p>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 erlang or haskell or scala like twitter developers did?</p> http://stackoverflow.com/questions/1803750/casting-in-haskell 0 Casting in Haskell curioComp 2009-11-26T13:45:42Z 2009-11-29T00:14:20Z <p>a) I need to cast from <code>String</code> to <code>int</code> in haskell. I have a function that gets the third word in a sentence as a string, but my third word in all my sentences are numbers (int), how can I cast from string to int so then I can use the number afterwards to do operations like add or mult?</p> <pre><code>getThirdWord :: String -&gt; String getThirdWord = head . tail . tail . words </code></pre> <p>b) I'm using Visual Haskell Studio. How can I use functions like <code>map</code> and <code>zip</code> in visual haskell studio? Are there any plugins that I need to include to my vhs to make them work?</p> <p>Thank you so much in advance!</p> http://stackoverflow.com/questions/1810178/haskell-execution-sequence 2 Haskell execution sequence Dinesh Simkhada 2009-11-27T18:45:05Z 2009-11-28T17:05:20Z <p>Hi can anybody help me understand this code</p> <pre><code>solve s | s == 0 = Nothing | s == 1 = Just 1 | otherwise = check [solve (s-(x*2)) | x &lt;- [1..9]] check [] = Nothing check (Nothing:xs) = check xs check (x:xs) = x </code></pre> <p>why this gives stack over flow when i tried to run it with even value, and is there any way in haskell where i can debug and see the actual value of the running program , like in eclipse we do ?</p> <p>thanks</p> http://stackoverflow.com/questions/1801459/algorithm-how-to-delete-duplicate-elements-in-a-list-efficiently 2 Algorithm - How to delete duplicate elements in a list efficiently? psihodelia 2009-11-26T03:59:32Z 2009-11-28T15:29:31Z <p>There is a <strong>list L</strong>. It contains elements of <strong>arbitrary type each</strong>. How to delete all duplicate elements in such list efficiently? <strong>ORDER must be preserved</strong></p> <p>Just an algorithm is required, so no import any external library is allowed.</p> http://stackoverflow.com/questions/1804679/if-you-cant-change-a-variables-value-in-haskell-how-do-you-create-data-structu 6 If you can't change a variable's value in Haskell, how do you create data structures? Thomas King 2009-11-26T16:37:15Z 2009-11-26T23:07:55Z <p>As per the title.</p> <p>I have the following code which creates a binary search tree, but if I want it created and changed dynamically with user input, how would I do that if I can't change the value of a variable in haskell?!?</p> <pre><code>find :: (Ord a) =&gt; Node a -&gt; a -&gt; Bool find (Node val left right) s | s == val = True | s &lt; val = find left s | s &gt; val = find right s find Empty s = False data Node a = Node a (Node a) (Node a) | Empty myTree = Node "m" (Node "a" Empty Empty) (Node "z" Empty Empty) </code></pre> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1802015/when-should-i-use-record-syntax-for-data-declarations-in-haskell 5 When should I use record syntax for data declarations in Haskell? Rayne 2009-11-26T07:12:05Z 2009-11-26T08:20:22Z <p>Record syntax seems extremely convenient compared to having to write your own accessor functions. I've never seen anyone give any guidelines as to when it's best to use record syntax over normal data declaration syntax, so I'll just ask here.</p> http://stackoverflow.com/questions/1797166/multiple-haskell-cabal-packages-in-one-directory 0 Multiple Haskell cabal-packages in one directory aleator 2009-11-25T14:13:08Z 2009-11-26T07:05:52Z <p><strong>What is the recommended way of having several cabal packages in one directory?</strong></p> <p><strong>Why</strong>: I have an old project with many separable modules. Since originally they formed just one program it was, and still is, handy to have them in same directory for easy compiling.</p> <p><strong>Options</strong></p> <ol> <li>Just suffer and split everything, including VCS holding the stuff, into different directories?</li> <li>Hack cabal until it is happy with multiple .cabal files in same directory? </li> <li>Make another subdirectory for each module and put .cabal files there along with symlinks to original pieces of code?</li> <li>Something smarter? What?</li> </ol> http://stackoverflow.com/questions/1798996/multicore-programming-in-haskell-control-parallel 2 multicore programming in Haskell - Control.Parallel Rafael S. Calsaverini 2009-11-25T18:26:45Z 2009-11-25T22:12:21Z <p>I'm trying to learn how to use the Control.Parallel module but I think I didn't get it right.</p> <p>I'm trying to run the following code (<em>fibs.hs</em>): import Control.Parallel</p> <pre><code>fib :: Int -&gt; Int fib 0 = 0 fib 1 = 1 fib n = p `par` (q `pseq` (p + q)) where p = fib (n-1) q = fib (n-2) main = print $ fib 30 </code></pre> <p>I compiled this with:</p> <pre><code>ghc -O2 --make -threaded fibs.hs </code></pre> <p>And then I get the following results executing this program (output of a python script that runs 100 times each program and returns average and standard deviation of the execution time):</p> <pre><code>./fibs +RTS -N1 -&gt; avg= 0.060203 s, deviation = 0.004112 s ./fibs +RTS -N2 -&gt; avg= 0.052335 s, deviation = 0.006713 s ./fibs +RTS -N3 -&gt; avg= 0.052935 s, deviation = 0.006183 s ./fibs +RTS -N4 -&gt; avg= 0.053976 s, deviation = 0.007106 s ./fibs +RTS -N5 -&gt; avg= 0.055227 s, deviation = 0.008598 s ./fibs +RTS -N6 -&gt; avg= 0.055703 s, deviation = 0.006537 s ./fibs +RTS -N7 -&gt; avg= 0.058327 s, deviation = 0.007526 s </code></pre> <p>My questions are:</p> <ol> <li><p>What exactly is happening when I evaluate: </p> <pre><code>a `par` (b `pseq` (a + b)) ? </code></pre> <p>I understand that a <code>par</code> b is supposed to hint the compiler about calculating a in parallel with b and return b. Ok. But what does <code>pseq</code> do?</p></li> <li><p>Why I see such a small performance increase? I'm running this in a Core2 Quad machine. I'd expect that running with -N5 or -N6 wouldn't make a real difference in performance or that the program would actually start to perform very badly. But why I see no improvement from -N2 to -N3 and why the initial improvement is so small?</p></li> </ol> http://stackoverflow.com/questions/68504/what-are-my-ide-editor-choices-for-haskell 28 What are my IDE/Editor choices for Haskell? Jason Dagit 2008-09-16T01:21:28Z 2009-11-25T14:08:51Z <p>I typically use Emacs with hasktags for editing Haskell but I would like to enumerate all the choices and hopefully get feedback on each.</p> <ul> <li><a href="http://www.haskell.org/haskell-mode/" rel="nofollow">Emacs</a></li> <li><a href="http://www.cs.kent.ac.uk/people/staff/cr3/toolbox/haskell/Vim/index.html" rel="nofollow">VIM</a></li> <li><a href="http://www.haskell.org/visualhaskell/" rel="nofollow">Visual Haskell</a></li> <li><a href="http://eclipsefp.sourceforge.net/" rel="nofollow">EclipseFP</a></li> <li><a href="http://leksah.org/" rel="nofollow">leksah</a></li> <li><a href="http://www.vim.org/scripts/script.php?script_id=2356" rel="nofollow">SHIM</a> (wasn't this for emacs originially? did the project die?)</li> <li><a href="http://www.haskell.org/haskellwiki/HIDE" rel="nofollow">HIDE</a></li> <li><a href="http://www.haskell.org/haskellwiki/Yi" rel="nofollow">yi</a></li> </ul> <p>If you've used one of the above, please tell me what you liked and didn't like about using it as a Haskell editor. I'm especially looking for something that gives me control over lots of the project management issues. Hopefully it can quickly navigate to source, show me haddock snippets on demand, look up type signatures and even help with refactoring. Further integration with hoogle and lambdabot are appreciated as well.</p> http://stackoverflow.com/questions/1361088/what-factors-could-determine-whether-clojure-scala-or-haskell-will-gain-traction 6 What factors could determine whether Clojure, Scala or Haskell will gain traction? i_like_monkeys 2009-09-01T07:43:04Z 2009-11-25T13:52:59Z <p>Given that it's impossible to see into the future, what factors related to Clojure, Scala or Haskell are likely to determine whether one of them catches on?</p> <p>Are there cultural or economic issues that could give one of these languages an advantage over the others?</p> <p>Or are none of these languages likely to gain traction because of their conceptual complexity?</p> http://stackoverflow.com/questions/1795785/can-somebody-walk-me-through-this-haskell-function-state-monad-related 2 Can somebody walk me through this Haskell function (State monad related)? Rayne 2009-11-25T09:45:34Z 2009-11-25T12:14:56Z <pre><code>tick :: State Int Int tick = get &gt;&gt;= \n -&gt; put (n+1) &gt;&gt;= \y -&gt; return n </code></pre> <p>I'm confused as to how <code>put (n+1)</code> has any effect on the end result of this function at all. It seems like this function should return the initial state unchanged. I'm trying to run through this in my mind, but I keep running out of room to hold things in place. :\</p> <p>If someone could walk me through the evaluation of this function, it would be really helpful.</p> http://stackoverflow.com/questions/1796316/filter-map-composition-problem-haskell 0 Filter/Map composition problem Haskell Walker128 2009-11-25T11:22:25Z 2009-11-25T11:36:34Z <p>I've been given this question in a tutorial, and I really don't know how to go about it.</p> <blockquote> <p>How must g and h be defined in terms of p and f in order to ensure that<br> <code>filter p . map f = map g . filter h</code><br> always holds?</p> </blockquote> <p>Any pointers in the right direction would be greatly appreciated.</p> http://stackoverflow.com/questions/1795186/how-to-simulate-the-concept-of-object-identity-in-haskell 0 how to simulate the concept of object identity in Haskell Shailesh Kumar 2009-11-25T07:16:42Z 2009-11-25T07:58:00Z <p>I am considering the design of an interpreter for Python like object oriented language in Haskell. One particular problem I am facing is related to the concept of object identity. If we consider Python's <code>id(object)</code> function, the definition suggests that it returns the "identity" of an object. This is an integer (or long integer) which is guaranteed to be unique and constant for this object during its lifetime. Two objects with non-overlapping lifetimes may have the same id() value. (Implementation note: this is the address of the object.) </p> <p>What is the general approach to implement a concept like this in Haskell? </p> http://stackoverflow.com/questions/1559701/cms-in-functional-programming-language 1 CMS in functional programming language folone 2009-10-13T11:41:38Z 2009-11-24T22:43:24Z <p>Are there any CMS'es, written in functonal programming languages (lisp, haskell, f#/nemerle, scala, erlang, clojure, smalltalk) already?</p> http://stackoverflow.com/questions/1784594/why-is-this-haskell-incorrect 1 Why is this Haskell incorrect? Martin 2009-11-23T17:12:42Z 2009-11-24T08:47:31Z <p>I have a Haskell file which looks like this:</p> <pre><code>longest::[Integer]-&gt;[Integer]-&gt;[Integer] max a b = if length a &gt; length b then a else b llfs::[Integer]-&gt;Integer llfs li = length(foldl longest group(li)) llfs([1, 2, 3, 3, 4, 5, 1, 1, 1]) </code></pre> <p>Which should print out the result of the function call at the end, however when I run the file I get this error:</p> <pre><code>C:\Users\Martin\Desktop\Haskell\Q1.hs:7:33: parse error (possibly incorrect indentation) </code></pre> <p>I don't understand what I'm doing wrong.</p> <p>Edit:: Now I now, gotta call things inside a main function. However having fixed that to look like this:</p> <pre><code>import List longest::[Integer]-&gt;[Integer]-&gt;[Integer] longest a b = if length a &gt; length b then a else b llfs::[Integer]-&gt;Integer llfs li = length(foldl longest group(li)) main = print (llfs [1, 2, 3, 3, 4, 5, 1, 1, 1]) </code></pre> <p>I now get this:</p> <pre><code>C:\Users\Martin\Desktop\Haskell\Q1.hs:7:31: Couldn't match expected type `[Integer]' against inferred type `[a] -&gt; [[a]]' In the second argument of `foldl', namely `group' In the first argument of `length', namely `(foldl longest group (li))' In the expression: length (foldl longest group (li)) </code></pre> <p>This one looks a little more difficult to solve!</p> http://stackoverflow.com/questions/1785279/generating-an-infinite-sequence-in-haskell 0 Generating an infinite sequence in Haskell Martin 2009-11-23T19:05:46Z 2009-11-23T21:40:33Z <p>I know that infinite sequences are possible in Haskell - however, I'm not entirely sure how to generate one</p> <p>Given a method</p> <pre><code>generate::Integer-&gt;Integer </code></pre> <p>which take an integer and produces the next integer in the sequence, how would I build an infinite sequence out of this?</p> http://stackoverflow.com/questions/1785523/haskell-how-do-i-define-the-types-my-function-can-take-as-parameters-and-how-do 0 Haskell: How do I define the types my function can take as parameters? AND how do I access unnamed variables in a data structure? Thomas King 2009-11-23T19:52:37Z 2009-11-23T20:52:03Z <p>1) Here is my code, the find function needs to take a (Node a) and a type (a) as parameters but my function definition doesn't seem to work, what am I doing wrong? Little info on the net that I can find, so thanks for any help!</p> <p>2) When my find function is implemented I'll need to access a specific variable in a Node, how do I do this?!?</p> <pre><code>-- int for comparisons find :: (Node a) =&gt; Node a -&gt; a -&gt; Bool find n s | s == "asd" = True | s /= "asd" = False data Node a = Node a (Node a) (Node a) | Empty myTree = Node "parent" (Node "left" Empty Empty) (Node "right" Empty Empty) </code></pre> <p>Here is the error message I get:</p> <pre><code>Type constructor `Node' used as a class In the type `(Node a) =&gt; Node a -&gt; a -&gt; Bool' In the type signature for `find': find :: (Node a) =&gt; Node a -&gt; a -&gt; Bool Failed, modules loaded: none. </code></pre> <p>I'm obviously still learning this so an explanation of the solutions would also be appreciated, thankyou!</p> http://stackoverflow.com/questions/1559590/haskell-force-floats-to-have-two-decimals 1 Haskell: Force floats to have two decimals invaderzim 2009-10-13T11:15:48Z 2009-11-23T20:15:40Z <p>Using the following code snippet:</p> <pre><code>(fromIntegral 100)/10.00 </code></pre> <p>Using the Haskell '98 standard prelude, how do I represent the result with two decimals?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1783668/how-to-recursively-compare-the-digits-in-a-number-in-haskell 1 How to recursively compare the digits in a number in Haskell Jonno_FTW 2009-11-23T15:03:26Z 2009-11-23T17:30:03Z <p>Hi</p> <p>I am doing <a href="http://projecteuler.net/index.php?section=problems&amp;id=112" rel="nofollow">problem 112</a> on Project Euler and came up with the following to test the example case (I'll change the number in <code>answer</code> to 0.99 to get the real answer):</p> <pre><code>isIncre x | x == 99 = False | otherwise = isIncre' x where isIncre' x = ??? isDecre x = isIncre (read $ reverse $ show x :: Int) isBouncy x = (isIncre x == False) &amp;&amp; (isDecre x == False) bouncers x = length [n|n&lt;-[1..x],isBouncy n] nonBouncers x = length [n|n&lt;-[1..x],(isBouncy n) == False] answer = head [x|x&lt;-[1..],((bouncers x) / (nonBouncers x)) == 0.5] </code></pre> <p>But what I don't know how to do is define a function <code>isIncre'</code> which tests to see if the digits in a number are greater than or equal to the one on their left. I know it needs to be done recursively but how? </p> <p>On a side note, I know I can only use <code>/</code> on two floating point numbers but how can I make the output of <code>bouncers</code> to be floating point number instead of an integer?</p> <p>Edit:</p> <p>Thanks for the help, but it didn't like the <code>=</code> when I changed <code>isIncre</code> to:</p> <pre><code>isIncre x | x &lt;= 99 = False | otherwise = isIncre' (mshow x) where isIncre' (x:y:xs) = (x &lt;= y) &amp;&amp; (isIncre' (y:xs)) isIncre' _ = True </code></pre> http://stackoverflow.com/questions/1779431/creating-monads-in-haskell 1 Creating monads in haskell qba 2009-11-22T17:58:35Z 2009-11-23T12:16:46Z <p>I want to create my own monad. This is what i wrote:</p> <pre><code>data LeafConType a = LeafCon (a,Int,Int) instance Monad (LeafConType ) where return = LeafCon lc@(LeafCon (t,i,n)) &gt;&gt;= f = if i&gt;=n then lc else f (t,i,n) </code></pre> <p>But this dont work. Ghc says:</p> <pre><code>leafcon.hs:26:1: Occurs check: cannot construct the infinite type: a = (a, Int, Int) When generalising the type(s) for `return' In the instance declaration for `Monad LeafConType' leafcon.hs:27:1: Occurs check: cannot construct the infinite type: a = (a, Int, Int) When generalising the type(s) for `&gt;&gt;=' In the instance declaration for `Monad LeafConType' </code></pre> <p>Whats wrong with that?</p> <p><hr></p> <p>I want to do calculations while i is lower than n. n should be constants by I don't know yet how to do this correct. It should be some mix of State and Maybe. If you have some advices feel free to share it with me:P</p> http://stackoverflow.com/questions/1779551/haskell-too-many-where-clauses-any-alternate-suggestions 4 Haskell too many where clauses, any alternate suggestions Dinesh Simkhada 2009-11-22T18:40:40Z 2009-11-23T07:53:27Z <p>I am totally new in Haskell and when writing small programs i normally end up with too many where clauses to check many things in the function, so it is good practice to write where clauses or is there any other good alternatives for this ?</p> <p>for example in the code below i tried to find if there is ant duplicate elements in each row of the two dimensional list, it works and every thing is content in same function but i am not satisfied with how code looks and i find it more imperative style of approaching to the problem so i am looking for any suggestion or thought on this from the experienced people out there. </p> <pre><code>noDups :: [[a]] -&gt; Bool noDups du = and (checkSu du) where checkDup [] = [] checkDup (x:xs) = checkRow x ++ checkDup xs where checkRow [] = [] checkRow (x:xs) = [x /= y | y &lt;- xs] ++ checkRow xs </code></pre> <p>once again this code is just to illustrate one problem, i am looking for approach to formulate problem in functional style. your suggestions or articles, links would be much helpful.</p> <p>Thanks </p> http://stackoverflow.com/questions/1776787/an-error-with-haskell-classes-i-fall-all-the-time-and-cant-understand 0 An error with Haskell classes I fall all the time and can't understand Rafael S. Calsaverini 2009-11-21T21:07:47Z 2009-11-23T04:20:31Z <p>Hi, there's an error I come across all the time but can't understand how to make it right. An example of code that gives me this error is:</p> <pre><code>class Someclass a where somefunc :: (Num b) =&gt; b -&gt; a -&gt; a data Sometype = Somecons Int instance Someclass Sometype where somefunc x (Somecons y) = Somecons (x+y) </code></pre> <p>The error message is: </p> <blockquote> <p>Couldn't match expected type 'b' against inferred type 'Int'<br> 'b' is a rigid type variable bound by the type signature for 'somefunc' at error.hs:3:21<br> In the second argument of '(+)', namely 'y'<br> In the first argument of 'Somecons', namely '(x + y)'<br> In the expression: Somecons (x + y)</p> </blockquote> <p>I understand that the error message is trying to tell me that I used a name of type Int where he was expecting something with type (Num b) => b. What I can't understand is that Int fits in (Num b)=>b. Shouldn't the compiler understand what I'm telling him (that for this specific instance b should be an integer? How can I make this fit?</p> <p>Coment: Of course in this specific example I could have made somefunc with type signature:</p> <pre><code>somefunc :: a -&gt; a-&gt; a </code></pre> <p>but supose I wanted something like:</p> <pre><code>data Newtype = Newcons (Int, Int) instance Someclass Newtype where somefunc x (Newtype (y,z) ) = Newtype (y+x, z) </code></pre> <p>Things like that recurrently happens when I'm trying to do something in haskell. </p> http://stackoverflow.com/questions/1780489/haskell-minimum-maximum-double-constant 2 Haskell minimum/maximum Double Constant Claudiu 2009-11-23T00:04:24Z 2009-11-23T02:45:25Z <p>Is there any way in Haskell to get the constant that is the largest and smallest possible positive rational number greater than zero that can be represented by doubles?</p> http://stackoverflow.com/questions/1779314/inventing-a-suitable-infix-operator-symbol-for-liftm 2 Inventing a suitable infix operator symbol for liftM Dario 2009-11-22T17:16:55Z 2009-11-22T22:03:25Z <p>When working with monadic expressions in Haskell, the use of <code>liftM</code>'s (even in infix position) often seems quite unaesthetic and verbose to me.</p> <p>Most other monadic primitives (<code>&gt;&gt;=</code>, <code>&gt;&gt;</code>) and even <code>liftM</code>'s <em>pure pendant</em> <code>$</code> are infix operators. This makes me think why there is no operator symbol for monadic lifting.</p> <p>Do you have reasonable, consistent suggestions for an operator symbol (or why there shouldn't be one)? (I thought of <code>&gt;-</code> and <code>-&lt;</code> (shifting the monad through a function), but they seem to have different meanings in the context of arrows.)</p> http://stackoverflow.com/questions/1778919/equivalence-testing-in-haskell 3 Equivalence testing in Haskell Jonno_FTW 2009-11-22T14:52:21Z 2009-11-22T21:36:55Z <p>Hi</p> <p>A quick question that has been bugging me lately. Does Haskell perform all the equivalence test in a function that returns a booleanm, even if one returns a false value? eg:</p> <pre><code>f a b = ((a+b) == 2) &amp;&amp; ((a*b) == 2) </code></pre> <p>If the first test returns false, will it perform the second test after the <code>&amp;&amp;</code>? Or is Haskell lazy enough to not do it and move on?</p> http://stackoverflow.com/questions/1749443/hdbc-driver-for-firebird-database 2 HDBC Driver for FireBird Database BM 2009-11-17T14:59:42Z 2009-11-22T20:19:01Z <p>Can someone point me to an HDBC(Haskell) Driver for FireBird Database, Nothing turned up on Google. Is my best option at this point to use an HDBC-ODBC bridge to connect to a FireBird database from a Haskell Program?</p> http://stackoverflow.com/questions/1779174/how-to-rearrange-this-function-to-return-the-extended-list-in-haskell 1 How to rearrange this function to return the extended list in Haskell Jonno_FTW 2009-11-22T16:22:26Z 2009-11-22T16:34:17Z <p>Hi</p> <p>I am doing <a href="http://projecteuler.net/index.php?section=problems&amp;id=68" rel="nofollow">problem 68</a> at project euler and came up with the following code in Haskell to return the list of numbers which fit the (given) solution:</p> <pre><code>lists = [n|n&lt;- permutations [1..6] , ring n ] ring [a,b,c,d,e,f] = (length $ nub $ map sum [[d,c,b],[f,b,a],[e,a,c]]) == 1 </code></pre> <p>This only returns a list of lists of 6 numbers each which fit the solution. What I don't know how to do, is make it return the actual solution, the lists that fit the form:</p> <pre><code>[d,c,b],[f,b,a],[e,a,c] </code></pre> <p>How can I make <code>lists</code> return a list of this format?</p> <p>(PS: I will add in the appropriate functions to return what the site actually wants later)</p> http://stackoverflow.com/questions/1777679/comparing-wildcards-for-equality-in-haskell 2 Comparing wildcards for equality in Haskell..? adnanhb 2009-11-22T02:55:55Z 2009-11-22T04:55:41Z <p>In Haskell, is there a way to compare that all wildcards are of the same type and value? For example, I want to create a function that exhibits the following behavior:</p> <pre><code>(1 M) (2 M) (3 M) -&gt; True (1 S) (2 S) (3 S) -&gt; True (1 S) (2 M) (3 S) -&gt; False </code></pre> <p>In other words, the first parameter should be 1, 2 and 3 and the second parameter should be all S or all M.</p> <p>In this case, we can maybe write a function as follows:</p> <pre><code>matches (1 _ ) (2 _ ) (3 _ ) </code></pre> <p>But, how do we determine whether the wildcards are all S or all M?</p> http://stackoverflow.com/questions/1773896/when-choosing-a-functional-programming-language-for-use-with-llvm-what-are-the-t 4 When choosing a functional programming language for use with LLVM, what are the trade-offs? james woodyatt 2009-11-20T23:40:43Z 2009-11-21T19:25:23Z <p>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 its bindings to LLVM to do your work, you have two choices as far as I know: Objective Caml and Haskell. If there are others, then I'd like to know about those too.</p> <p>I'm not asking for subjective opinions, so please don't give this the <code>subjective</code> tag. I want to make up my own mind about this, but I'm not sure I know what are all the trade-offs. So, StackOverflow to the rescue. What are the trade-offs?</p>