User Apocalisp - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T22:05:23Z http://stackoverflow.com/feeds/user/3434 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/1800872#1800872 0 Answer by Apocalisp for Fastest way to get value of pi Apocalisp 2009-11-26T00:16:31Z 2009-11-26T00:16:31Z <p>Pi is irrational. In any language, the value of pi is precisely the mathematical constant π. You can't get its value any more accurately than that.</p> http://stackoverflow.com/questions/1774395/koch-snowflake-implementation-in-haskell/1774716#1774716 1 Answer by Apocalisp for Koch Snowflake Implementation in Haskell Apocalisp 2009-11-21T06:26:26Z 2009-11-21T06:26:26Z <ol> <li>Calculate the points of a triangle centered in the plane.</li> <li>At each point of the triangle, calculate the points of a triangle one-third its size, and the other way up (flipped along its horizontal middle).</li> <li>Pass each triangle to step 2, pass the results of that again to step 2, and so on.</li> <li>Do all that again, upside down.</li> </ol> <p>That should give you a list of (lists of) triangles. Now draw these triangles on the screen to the depth that you think is reasonable.</p> http://stackoverflow.com/questions/1772104/how-far-should-i-take-referential-transparency/1774123#1774123 3 Answer by Apocalisp for How far should I take referential transparency? Apocalisp 2009-11-21T00:54:54Z 2009-11-21T01:04:35Z <p>Why not take referential transparency all the way?</p> <p>Consider the definition of <code>get_user_from_db</code>. How does it know how to talk to the database? Obviously it assumes some (global) database context. You could change this function so that it returns a function that takes the database context as its argument. What you have is...</p> <pre><code>get_user_from_db :: userid -&gt; User </code></pre> <p>This is a lie. You can't go from a userid from a user. You need something else: a database.</p> <pre><code>get_user_from_db :: userid -&gt; Database -&gt; User </code></pre> <p>Now just curry that with the userid, and given a Database at some later time, the function will give you a User. Of course, in the real world, <code>Database</code> will be a handle or a database connection object or whatever. For testing, give it a mock database.</p> http://stackoverflow.com/questions/1751953/concurrent-map-foreach-in-scala/1766904#1766904 0 Answer by Apocalisp for Concurrent map/foreach in scala Apocalisp 2009-11-19T22:05:38Z 2009-11-19T22:05:38Z <p>If you don't want to dive into a pre-alpha version of Scalaz, there's <a href="http://functionaljava.org" rel="nofollow">Functional Java</a>. The latest release of this library has some higher-order concurrency features that you can use.</p> <pre><code>import fjs.F._ import fj.control.parallel.Strategy._ import fj.control.parallel.ParModule._ import java.util.concurrent.Executors._ val pool = newCachedThreadPool val par = parModule(executorStrategy[Unit](pool)) </code></pre> <p>And then...</p> <pre><code>par.parMap(vals, f) </code></pre> <p>Remember to <code>shutdown</code> the <code>pool</code>.</p> http://stackoverflow.com/questions/1751953/concurrent-map-foreach-in-scala/1766192#1766192 1 Answer by Apocalisp for Concurrent map/foreach in scala Apocalisp 2009-11-19T20:10:48Z 2009-11-19T21:53:46Z <p><a href="http://code.google.com/p/scalaz/" rel="nofollow">Scalaz</a> has <code>parMap</code>. You would use it as follows:</p> <pre><code>import scalaz.Scalaz._ import scalaz.M._ import scalaz.concurrent.strategies.Executor.strategy import java.util.concurrent.Executors._ implicit val pool = newCachedThreadPool </code></pre> <p>This will equip every functor (including <code>Iterable</code>) with a <code>parMap</code> method, so you can just do:</p> <pre><code>vals.parMap(f) </code></pre> <p>You also get <code>parFlatMap</code>, <code>parZipWith</code>, etc. Oh, and don't forget to:</p> <pre><code>pool.shutdown </code></pre> <p>You need the current trunk head of Scalaz, so it's pre-alpha at the moment.</p> http://stackoverflow.com/questions/1746743/extending-an-existing-type-in-ocaml/1746908#1746908 2 Answer by Apocalisp for Extending an existing type in OCaml Apocalisp 2009-11-17T06:06:34Z 2009-11-17T06:21:42Z <p>You have a simple syntax error, the left side of the <code>|</code> doesn't have a type constructor. Something like this should work:</p> <pre><code>type nbexp = B bexp | Nop nbexp ;; </code></pre> <p>Those types are uninhabited though, since it doesn't look like you can construct a bexp without already having a bexp.</p> http://stackoverflow.com/questions/1739675/efficient-queue-in-haskell/1740603#1740603 11 Answer by Apocalisp for Efficient queue in Haskell. Apocalisp 2009-11-16T07:22:36Z 2009-11-16T14:40:49Z <p>You could always just use <code>Data.Sequence</code>.</p> <p>A well-known implementation of a purely functional queue is to use two lists. One for enqueue and another for dequeue. Enqueue would simply cons with the enqueue list. Dequeue takes the head of the dequeue list. When the dequeue list is empty, refill it by reversing the enqueue list. See Chris Okasaki's <a href="http://www.cs.cmu.edu/~rwh/theses/okasaki.pdf" rel="nofollow">Purely Functional Datastructures.</a></p> <p>Even though this implementation uses <code>reverse</code>, the amortized time cost of this is insignificant asymptotically. It works out so that for every enqueue, you incur a time debt of Θ(1). So the time to dequeue is on average twice that of an enqueue. This is a constant factor, so the cost of both operations is Θ(1).</p> http://stackoverflow.com/questions/1734537/trying-to-make-sierpinski-triangle-generator-in-a-functional-programming-style/1737012#1737012 2 Answer by Apocalisp for Trying to make sierpinski triangle generator in a functional programming style Apocalisp 2009-11-15T08:42:09Z 2009-11-16T07:11:43Z <p>Have your function return a pair. The left half contains the triangles for the current iteration. The right half contains a function that returns a pair containing the triangles for the next iteration and a function...</p> <p><strong>EDIT</strong> Here's how you might rewrite your solution:</p> <pre><code>type Triangle = (Double, Double, Double) def fractal(width : Double): Stream[List[Triangle]] = { val w2 = width / 2 def surrounding(t: Triangle) = match t case (startx, starty, width) =&gt; { val w = width/2 val x = startx + w / 2 val y = starty - w List((x, y, w), (x - w, starty + w, w), (x + w, starty + w, w)) } def s(tris: List[Triangle]): Stream[List[Triangle]] = Stream.cons(tris, s(tris.flatMap(surrounding(_)))) s(List((w2/2, w2, w2))) } </code></pre> <p>I've not tried this out, but something very much to this effect will give you a stream of iterations, each iteration being a list of triangles. To draw an iteration, just pop it off the stream and call your <code>drawTriangle</code> on it.</p> <p>Style tips: Avoid <code>foreach</code>. Use 2 or 3 spaces instead of tabs. Use terse names where you can get away with it, it makes code easier to scan for structure. The semicolon is unnecessary noise.</p> http://stackoverflow.com/questions/1735146/ways-to-get-the-middle-of-a-list-in-haskell/1737749#1737749 2 Answer by Apocalisp for Ways to get the middle of a list in Haskell? Apocalisp 2009-11-15T15:02:04Z 2009-11-15T15:31:36Z <p>Solution inspired by <a href="http://stackoverflow.com/questions/1735146/ways-to-get-the-middle-of-a-list-in-haskell/1735168#1735168">Carl's answer</a>. </p> <pre><code>import Control.Monad.Instances middle = m =&lt;&lt; drop 1 where m [] = take 1 m [_] = take 2 m ys = m (drop 2 ys) . drop 1 </code></pre> http://stackoverflow.com/questions/1717553/pointer-equality-in-haskell/1718575#1718575 5 Answer by Apocalisp for Pointer equality in Haskell? Apocalisp 2009-11-11T22:38:07Z 2009-11-12T19:47:05Z <p><strong>EDIT</strong>: Given your example, you could model this with the IO monad. Just assign your functions to IORefs and compare them. </p> <pre><code>Prelude Data.IORef&gt; z &lt;- newIORef (\x -&gt; x) Prelude Data.IORef&gt; y &lt;- newIORef (\x -&gt; x) Prelude Data.IORef&gt; z == z True Prelude Data.IORef&gt; z == y False </code></pre> http://stackoverflow.com/questions/1720318/examples-of-functional-programs-writing-themselves-via-type-analysis/1720497#1720497 4 Answer by Apocalisp for Examples of functional programs 'writing themselves' via type analysis Apocalisp 2009-11-12T07:22:25Z 2009-11-12T07:22:25Z <p>Start with the simplest possible function: <code>identity :: 'a -&gt; 'a</code>. How many implementations can you think of? If you give me an <code>a</code>, there's only one thing I can do with it to give you back an <code>a</code>. I give you back the same <code>a</code> that you gave me, so:</p> <pre><code>let id x = x </code></pre> <p>Same goes for pairs. <code>fst :: ('a,'b) -&gt; 'a</code>. How many ways can you implement that? How about <code>snd :: ('a, 'b) -&gt; 'b</code>? Only one implementation can possibly exist for each.</p> <p>Analogously, taking the head and tail of a list falls right out of <code>fst</code> and <code>snd</code>. If <code>head :: 'a list -&gt; a</code> and <code>tail :: 'a list -&gt; 'a list</code>, and an <code>'a list</code> is just a pair <code>('a, 'a list)</code> (or the empty list), then it's obvious that to satisfy the types, you return first and second part of the list, respectively.</p> <p>One more example to do with higher-order functions: <code>compose :: ('a -&gt; 'b) -&gt; ('c -&gt; 'a) -&gt; 'c -&gt; 'b</code>. There's only one implementation, and it falls right out of the types. You're given a <code>c</code> and two functions. What can you do with the <code>c</code>? Well, you can apply <code>(c -&gt; a)</code>. What can you then do with the <code>a</code>? The only thing you can do is apply <code>(a -&gt; b)</code>, and voila, you have satisfied the type.</p> <pre><code>let compose f g x = f (g x) </code></pre> http://stackoverflow.com/questions/1718815/finding-whether-or-not-an-item-is-contained-within-an-k-ary-tree/1718821#1718821 2 Answer by Apocalisp for Finding whether or not an item is contained within an k-ary tree Apocalisp 2009-11-11T23:30:11Z 2009-11-12T00:09:20Z <pre><code>ktreeContains y (Node x ts) = x == y || (any . ktreeContains) y ts </code></pre> http://stackoverflow.com/questions/1712952/is-there-a-known-implementation-of-an-indexed-linked-list/1718687#1718687 0 Answer by Apocalisp for Is there a known implementation of an indexed linked list? Apocalisp 2009-11-11T22:57:21Z 2009-11-11T22:57:21Z <p>How about a hash table? You get O(1) random access by key and O(1) insertion/deletion. The catch is that entries are unordered.</p> <p>For an efficient implementation of ordered sequences, check out <a href="http://en.wikipedia.org/wiki/Finger%5Ftree" rel="nofollow">finger trees</a>. They give you O(1) access to <code>head</code> and <code>last</code> and O(log n) random access to inner nodes. Insert or delete at either end in O(1). Notably, reversal of a finger tree takes constant time.</p> http://stackoverflow.com/questions/1703268/what-is-asp-net-in-terms-of-fp/1705842#1705842 0 Answer by Apocalisp for What is ASP.net in terms of FP? Apocalisp 2009-11-10T05:37:03Z 2009-11-10T05:37:03Z <p>ASP.Net is a kind of IO monad. The kinds of IO actions available in the monad are ones that read from HTTP requests and write to HTTP responses.</p> <p>It might be educational to look at a web application server written in a purely functional language. <a href="http://happstack.com/" rel="nofollow">Happstack</a> is written entirely in Haskell.</p> http://stackoverflow.com/questions/1693181/scheme-implementing-n-argument-compose-using-fold/1693903#1693903 1 Answer by Apocalisp for Scheme: Implementing n-argument compose using fold Apocalisp 2009-11-07T18:05:14Z 2009-11-08T04:35:47Z <p>The issue here is that you're trying to mix procedures of different arity. You probably want to curry list and then do this:</p> <pre><code>(((compose-n (curry list) identity) 1) 2 3) </code></pre> <p>But that's not really very satisfying.</p> <p>You might consider an n-ary identity function:</p> <pre><code>(define id-n (lambda xs xs)) </code></pre> <p>Then you can create a compose procedure specifically for composing n-ary functions:</p> <pre><code>(define compose-nary (lambda (f g) (lambda x (flatten (f (g x)))))) </code></pre> <p>Composing an arbitrary number of n-ary functions with:</p> <pre><code>(define compose-n-nary (lambda args (foldr compose-nary id-n args))) </code></pre> <p>Which works:</p> <pre><code>&gt; ((compose-n-nary id-n list) 1 2 3) (1 2 3) </code></pre> <p><strong>EDIT:</strong> It helps to think in terms of types. Let's invent a type notation for our purposes. We'll denote the type of pairs as <code>(A . B)</code>, and the type of lists as <code>[*]</code>, with the convention that <code>[*]</code> is equivalent to <code>(A . [*])</code> where <code>A</code> is the type of the <code>car</code> of the list (i.e. a list is a pair of an atom and a list). Let's further denote functions as <code>(A =&gt; B)</code> meaning "takes an A and returns a B". The <code>=&gt;</code> and <code>.</code> both associate to the right, so <code>(A . B . C)</code> equals <code>(A . (B . C))</code>.</p> <p>Now then... given that, here's the type of <code>list</code> (read <code>::</code> as "has type"):</p> <pre><code>list :: (A . B) =&gt; (A . B) </code></pre> <p>And here's identity:</p> <pre><code>identity :: A =&gt; A </code></pre> <p>There's a difference in kind. <code>list</code>'s type is constructed from two elements (i.e. list's type has kind <code>* =&gt; * =&gt; *</code>) while <code>identity</code>'s type is constructed from one type (identity's type has kind <code>* =&gt; *</code>).</p> <p>Composition has this type:</p> <pre><code>compose :: ((A =&gt; B).(C =&gt; A)) =&gt; C =&gt; B </code></pre> <p>See what happens when you apply <code>compose</code> to <code>list</code> and <code>identity</code>. <code>A</code> unifies with the domain of the <code>list</code> function, so it must be a pair (or the empty list, but we'll gloss over that). <code>C</code> unifies with the domain of the <code>identity</code> function, so it must be an atom. The composition of the two then, must be a function that takes an atom <code>C</code> and yields a list <code>B</code>. This isn't a problem if we only give this function atoms, but if we give it lists, it will choke because it only expects one argument.</p> <p>Here's how curry helps:</p> <pre><code>curry :: ((A . B) =&gt; C) =&gt; A =&gt; B =&gt; C </code></pre> <p>Apply <code>curry</code> to <code>list</code> and you can see what happens. The input to <code>list</code> unifies with <code>(A . B)</code>. The resulting function takes an atom (the car) and returns a function. That function in turn takes the remainder of the list (the cdr of type <code>B</code>), and finally yields the list.</p> <p>Importantly, the curried <code>list</code> function is of the same kind as <code>identity</code>, so they can be composed without issue. This works the other way as well. If you create an identity function that takes pairs, it can be composed with the regular <code>list</code> function.</p> http://stackoverflow.com/questions/1694097/haskell-compiler-error-not-in-scope/1694109#1694109 1 Answer by Apocalisp for Haskell compiler error: not in scope Apocalisp 2009-11-07T19:19:48Z 2009-11-07T19:19:48Z <p>That looks correct. I just pasted that into a .hs file and :loaded it into GHCi. Works here and I have the same GHC version as you.</p> http://stackoverflow.com/questions/1693997/what-are-your-favourite-java-features/1694029#1694029 1 Answer by Apocalisp for What are your favourite Java features? Apocalisp 2009-11-07T18:52:18Z 2009-11-07T18:52:18Z <p>I like the JVM.</p> http://stackoverflow.com/questions/1683857/code-golf-hourglass/1692397#1692397 2 Answer by Apocalisp for Code Golf: Hourglass Apocalisp 2009-11-07T08:11:47Z 2009-11-07T08:11:47Z <h2>Haskell. 285 characters. (Side-effect-free!)</h2> <pre><code>x n c=h s++'\n':reverse(h(flip s)) where h s=r w '-'++s '+' b(w-2)0 p;w=(t n);p=d(n*n*c)100 s x n i o p|i&gt;0='\n':l++s x n(i-2)(o+1)(max(p-i)0)|True=[] where l=r o b++'\\':f d++r(i#p)n++f m++'/':r o b;f g=r(g(i-(i#p))2)x b=' ' r=replicate t n=1+2*n d=div (#)=min m=(uncurry(+).).divMod </code></pre> <p>Run with e.g. <code>x 5 50</code></p> http://stackoverflow.com/questions/1678477/should-i-read-all-of-oracles-documentation/1678492#1678492 4 Answer by Apocalisp for Should I read all of Oracle's documentation? Apocalisp 2009-11-05T05:15:29Z 2009-11-05T05:15:29Z <p>No.</p> <p>The documentation is intended for reference. Read the "2-day DBA", and then "Oracle Database Concepts". Read the rest as you go (as you use the features that they cover).</p> http://stackoverflow.com/questions/1634911/can-liftm-differ-from-lifta/1635208#1635208 4 Answer by Apocalisp for Can liftM differ from liftA? Apocalisp 2009-10-28T04:31:06Z 2009-10-28T16:55:01Z <p>For a given type, <code>liftA</code>, <code>liftM</code>, <code>fmap</code>, and <code>.</code> are all necessarily the same function. For any covariant functor, there exists one and only one implementation that satisfies the type. I.e. for a given type constructor, only one Functor instance exists. For a given type constructor <code>f</code>, <code>fmap</code> and <code>fmap'</code>, both of type <code>(a -&gt; b) -&gt; f a -&gt; f b</code>, satisfy the functor laws. By the functor laws, <code>fmap id == id</code> and <code>fmap' id == id</code>. Thus, <code>fmap == fmap'</code>.</p> <p>Now for Applicative. It's possible for <code>ap</code> and <code>&lt;*&gt;</code> to be distinct for some functors simply because there could be more than one implementation that satisfies the types. For example, List has more than one possible Applicative instance. You could declare an applicative as follows:</p> <pre><code>instance Applicative [] where (f:fs) &lt;*&gt; (x:xs) = f x : fs &lt;*&gt; xs _ &lt;*&gt; _ = [] pure = repeat </code></pre> <p>The <code>ap</code> function would still be defined as <code>liftM2 id</code>, which is the Applicative instance that comes for free with every monad. But here you have an example of a type constructor having more than one applicative instance.</p> <p>Does this applicative instance satisfy the Applicative Laws? I actually don't think it does. I wonder if it's possible to have more than one applicative instance that does satisfy them, for a given type constructor.</p> http://stackoverflow.com/questions/42934/whats-with-the-love-of-dynamic-languages/42955#42955 56 Answer by Apocalisp for What's with the love of dynamic Languages Apocalisp 2008-09-04T00:58:58Z 2009-10-27T06:18:55Z <p>Before engaging in any debate about type systems, read this:</p> <p><a href="http://www.pphsg.org/cdsmith/types.html" rel="nofollow">http://www.pphsg.org/cdsmith/types.html</a></p> <p>That said, I think the reason is that people are used to statically typed languages that have very limited and inexpressive type systems. These are languages like Java, C++, Pascal, etc. Instead of going in the direction of more expressive type systems and better type inference, (as in Haskell, for example, and even SQL to some extent), some people like to just keep all the "type" information in their head (and in their tests) and do away with static typechecking altogether.</p> <p>What this buys you in the end is unclear. There are many misconceived notions about typechecking, the ones I most commonly come across are these two.</p> <p><strong>Fallacy: Dynamic languages are less verbose.</strong> Type information equals type annotation? Totally untrue. As we know, type annotation is annoying. The machine should be able to figure that stuff out. And in fact, it does in modern compilers. Here is a statically typed QuickSort in two lines of Haskell (from <a href="http://haskell.org" rel="nofollow">haskell.org</a>):</p> <pre><code>qsort [] = [] qsort (x:xs) = qsort (filter (&lt; x) xs) ++ [x] ++ qsort (filter (&gt;= x) xs) </code></pre> <p>And here is a dynamically typed QuickSort in LISP (from <a href="http://swisspig.net/r/post/blog-200603301157" rel="nofollow">swisspig.net</a>):</p> <pre><code>(defun quicksort (lis) (if (null lis) nil (let* ((x (car lis)) (r (cdr lis)) (fn (lambda (a) (&lt; a x)))) (append (quicksort (remove-if-not fn r)) (list x) (quicksort (remove-if fn r)))))) </code></pre> <p>The Haskell example falsifies the hypothesis <em>statically typed, therefore verbose</em>. The LISP example falsifies the hypothesis <em>verbose, therefore statically typed</em>. There is no implication in either direction between typing and verbosity. You can safely put that out of your mind.</p> <p><strong>Fallacy: Statically typed languages have to be compiled.</strong> Again, not true. Many statically typed languages have interpreters. There's the Scala interpreter, The GHCi and Hugs interpreters for Haskell, and of course SQL has been both statically typed and interpreted for longer than I've been alive.</p> <p>Or, you know, maybe the dynamic crowd just wants freedom to not have to think as carefully about what they're doing. The software might not be correct or robust, but maybe it doesn't have to be.</p> <p>Personally, I think that those who would give up type safety to purchase a little temporary liberty, deserve neither liberty nor type safety.</p> http://stackoverflow.com/questions/1628493/is-a-extends-inherits-what-is-your-preferred-term-for-inheritance-and-why/1628862#1628862 0 Answer by Apocalisp for Is-a, extends, 'inherits': What is your preferred term for "inheritance" and why? Apocalisp 2009-10-27T05:05:17Z 2009-10-27T05:05:17Z <p>I like to kick it old-school and say "A implies B". It's not ambiguous like the other terms, and has a precise meaning.</p> <p><a href="http://apocalisp.wordpress.com/2009/08/27/hostility-toward-subtyping/" rel="nofollow">See here.</a></p> http://stackoverflow.com/questions/1628061/parallel-insertions-into-a-binary-trie-in-haskell/1628369#1628369 1 Answer by Apocalisp for Parallel "insertions" into a binary trie in Haskell Apocalisp 2009-10-27T01:55:43Z 2009-10-27T01:55:43Z <p>Why don't you just try it and see? Time the execution of the program with 1 thread and several, and see if there's a difference. Sparks in Haskell are really very cheap, so don't worry if you create a lot of them.</p> http://stackoverflow.com/questions/1621337/some-questions-about-monads-in-haskell/1622913#1622913 3 Answer by Apocalisp for Some questions about monads in Haskell Apocalisp 2009-10-26T03:08:06Z 2009-10-26T04:20:11Z <p>The types do line up, funnily enough. Here's how.</p> <p>Remember that a monad is also a functor. The following function is defined for all functors:</p> <pre><code>fmap :: (Functor f) =&gt; (a -&gt; b) -&gt; f a -&gt; f b </code></pre> <p>Now the question: Do these types really line up? Well, yes. Given a function from <code>a</code> to <code>b</code>, then if we have an environment <code>f</code> in which <code>a</code> is available, we have an environment <code>f</code> in which <code>b</code> is available.</p> <p>By analogy to syllogism:</p> <pre><code>(Functor Socrates) =&gt; (Man -&gt; Mortal) -&gt; Socrates Man -&gt; Socrates Mortal </code></pre> <p>Now, as you know, a monad is a functor equipped with bind and return:</p> <pre><code>return :: (Monad m) =&gt; a -&gt; m a (=&lt;&lt;) :: (Monad m) =&gt; (a -&gt; m b) -&gt; m a -&gt; m b </code></pre> <p>You may not know that equivalently, it's a functor equipped with return and join:</p> <pre><code>join :: (Monad m) =&gt; m (m a) -&gt; m a </code></pre> <p>See how we're peeling off an <code>m</code>. With a monad <code>m</code>, you can't always get from <code>m a</code> to <code>a</code>, but you can always get from <code>m (m a)</code> to <code>m a</code>.</p> <p>Now look at the first argument to <code>(=&lt;&lt;)</code>. It's a function of type <code>(a -&gt; m b)</code>. What happens when you pass that function to <code>fmap</code>? You get <code>m a -&gt; m (m b)</code>. So, "mapping" over an <code>m a</code> with a function <code>a -&gt; m b</code> gives you <code>m (m b)</code>. Notice that this is exactly like the type of the argument to <code>join</code>. This is not a coincidence. A reasonable implementation of "bind" looks like this:</p> <pre><code>(&gt;&gt;=) :: m a -&gt; (a -&gt; m b) -&gt; m b x &gt;&gt;= f = join (fmap f x) </code></pre> <p>In fact, bind and join can be defined in terms of each other:</p> <pre><code>join = (&gt;&gt;= id) </code></pre> http://stackoverflow.com/questions/1604790/what-is-haskell-actually-useful-for/1604928#1604928 1 Answer by Apocalisp for What is Haskell actually useful for? Apocalisp 2009-10-22T03:51:37Z 2009-10-22T03:51:37Z <p>You might want to read <a href="http://www.haskell.org/haskellwiki/Why%5FHaskell%5Fmatters" rel="nofollow">Why Haskell Matters</a>.</p> http://stackoverflow.com/questions/1564758/does-functional-programming-mandate-new-naming-conventions/1570614#1570614 1 Answer by Apocalisp for Does functional programming mandate new naming conventions? Apocalisp 2009-10-15T06:29:10Z 2009-10-15T06:29:10Z <p>In Haskell, meaning is conveyed less with variable names than with <strong>types</strong>. Being purely functional has the advantage of being able to ask for the type of any expression, regardless of context.</p> http://stackoverflow.com/questions/1570242/finding-words-from-random-input-letters-in-python-what-algorithm-to-use-code-alr/1570490#1570490 2 Answer by Apocalisp for Finding words from random input letters in python. What algorithm to use/code already there? Apocalisp 2009-10-15T05:43:39Z 2009-10-15T06:02:22Z <p>For your dictionary index, build a map (Map[Bag[Char], List[String]]). It should be a hash map so you can get O(1) word lookup. A Bag[Char] is an identifier for a word that is unique up to character order. It's is basically a hash map from Char to Int. The Char is a given character in the word and the Int is the number of times that character appears in the word.</p> <p>Example:</p> <pre><code>{'a'=&gt;3, 'n'=&gt;1, 'g'=&gt;1, 'r'=&gt;1, 'm'=&gt;1} =&gt; ["anagram"] {'s'=&gt;3, 't'=&gt;1, 'r'=&gt;1, 'e'=&gt;2, 'd'=&gt;1} =&gt; ["stressed", "desserts"] </code></pre> <p>To find words, take every combination of characters from the input string and look it up in this map. The complexity of this algorithm is O(2^n) in the length of the input string. Notably, the complexity does not depend on the length of the dictionary.</p> http://stackoverflow.com/questions/1552403/java-data-structure-for-caching-computation-result/1552441#1552441 3 Answer by Apocalisp for Java: Data structure for caching computation result? Apocalisp 2009-10-12T02:38:51Z 2009-10-12T03:00:39Z <p>Sounds like you want memoisation. The latest trunk head of <a href="http://code.google.com/p/functionaljava" rel="nofollow">Functional Java</a> has a memoising product type <code>P1</code> that models a computation whose result is cached.</p> <p>You would use it like this:</p> <pre><code>P1&lt;Thing&gt; myThing = new P1&lt;Thing&gt;() { public Thing _1() { return expensiveComputation(); } }.memo(); </code></pre> <p>Calling _1() the first time will run the expensive computation and store it in the memo. After that, the memo is returned instead.</p> <p>For your "two keys", you'd want a simple pair type. Functional Java has this too in the form of the class <code>P2&lt;A, B&gt;</code>. To memoise such a value, simply use <code>P1&lt;P2&lt;A, B&gt;&gt;</code>.</p> <p>You can also use the <code>Promise&lt;A&gt;</code> class instead of the memoisation. This has been in the library for a while, so you'd just need the latest binary. You would use that as follows:</p> <pre><code>Promise&lt;Thing&gt; myThing = parModule(sequentialStrategy).promise(new P1&lt;Thing&gt;() { public Thing _1() { return expensiveComputation(); } }); </code></pre> <p>To get the result out, simply call <code>myThing.claim()</code>. <code>Promise&lt;A&gt;</code> also provides methods for mapping functions over the result <em>even if the result is not yet ready</em>.</p> <p>You need to <code>import static fj.control.parallel.ParModule.parModule</code> and <code>fj.control.parallel.Strategy.sequentialStrategy</code>. If you want the computation to run in its own thread, replace <code>sequentialStrategy</code> with one of the other strategies provided by the <code>Strategy</code> class.</p> http://stackoverflow.com/questions/1473929/how-to-handle-mismatched-lists-for-a-zip-algorithm/1552280#1552280 2 Answer by Apocalisp for How to handle mismatched lists for a Zip algorithm Apocalisp 2009-10-12T01:11:35Z 2009-10-12T01:11:35Z <p>A common thing to do is to zip a list with its own tail. For example to turn a list of points into a path that visits those points. The tail is obviously one shorter than the list, but this is certainly not an exceptional case. Another common thing is to zip a list with all of its tails to get a list of unordered pairs that can be constructed from the list (to construct a complete graph, for example:</p> <pre><code>liftM2 (=&lt;&lt;) zip tails </code></pre> <p>This would be really difficult if <code>zip</code> threw exceptions or returned nulls. The expected behaviour therefore is to truncate the output to the length of the shorter list. This is consistent with the type of the function.</p> http://stackoverflow.com/questions/1524750/what-is-your-favourite-cleverly-written-functional-code/1551139#1551139 2 Answer by Apocalisp for What is your favourite cleverly written functional code? Apocalisp 2009-10-11T16:48:07Z 2009-10-11T16:48:07Z <p>Breadth-first traversal of an n-ary tree in Haskell:</p> <pre><code>bfs t = (fmap . fmap) rootLabel $ takeWhile (not . null) $ iterate (&gt;&gt;= subForest) [t] </code></pre> http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/1800872#1800872 Comment by Apocalisp on Fastest way to get value of pi Apocalisp 2009-11-26T04:48:47Z 2009-11-26T04:48:47Z You're talking about a rational approximation of pi, not the value of pi. The value of pi is just pi, and if you keep it that way, then the precision gets propagated to future calculations. Multiply by 2 and you get the expression 2π, which is precise. Divide it by 3 and you get π/3, which is also precise. Prematurely approximating to a rational number with floating point representation is a mistake. http://stackoverflow.com/questions/1779314/inventing-a-suitable-infix-operator-symbol-for-liftm/1779403#1779403 Comment by Apocalisp on Inventing a suitable infix operator symbol for liftM Apocalisp 2009-11-23T06:04:09Z 2009-11-23T06:04:09Z By the way, <code>(liftM2 f) x y</code> is equivalent to <code>f &lt;$&gt; x &lt;&#42;&gt; y</code>. Ditto for <code>liftM3</code>, etc. Just keep adding <code>&lt;&#42;&gt;</code>. http://stackoverflow.com/questions/1779314/inventing-a-suitable-infix-operator-symbol-for-liftm/1779403#1779403 Comment by Apocalisp on Inventing a suitable infix operator symbol for liftM Apocalisp 2009-11-23T05:56:36Z 2009-11-23T05:56:36Z All monads are applicative. Creating an instance of Applicative for a monad is as simple as declaring <code>a &lt;$&gt; f = a &gt;&gt;= (return . f)</code> and <code>(&lt;&#42;&gt;) = ap</code>. http://stackoverflow.com/questions/1772104/how-far-should-i-take-referential-transparency/1774123#1774123 Comment by Apocalisp on How far should I take referential transparency? Apocalisp 2009-11-21T07:57:34Z 2009-11-21T07:57:34Z Having <code>Database</code> as the first argument, a function can only be composed with functions that return databases. I suspect there aren't many of those. http://stackoverflow.com/questions/1772104/how-far-should-i-take-referential-transparency/1774123#1774123 Comment by Apocalisp on How far should I take referential transparency? Apocalisp 2009-11-21T06:01:42Z 2009-11-21T06:01:42Z You can get one from the other. <code>a -&gt; b -&gt; c</code> is equivalent to <code>b -&gt; a -&gt; c</code>. All you need is a higher-order function: <code>flip f a b = f b a</code>. The order of arguments a design choice. In this particular case it makes sense for composability to put Database as the last argument, since that allows you to do Kleisli composition. http://stackoverflow.com/questions/1739675/efficient-queue-in-haskell/1740603#1740603 Comment by Apocalisp on Efficient queue in Haskell. Apocalisp 2009-11-19T17:05:18Z 2009-11-19T17:05:18Z It's wholly possible that an entirely different structure in a different context has different properties than this one, yes. http://stackoverflow.com/questions/1734537/trying-to-make-sierpinski-triangle-generator-in-a-functional-programming-style/1737012#1737012 Comment by Apocalisp on Trying to make sierpinski triangle generator in a functional programming style Apocalisp 2009-11-16T06:19:12Z 2009-11-16T06:19:12Z It doesn't need to be a partial function. Just have it return the function that calculates the next step. That function then returns what you need to calculate the next step, and so on. See if you can implement your function as an instance of <code>(B =&gt; (A, B)) =&gt; B =&gt; Stream[A]</code>. You can see how a function like <code>B =&gt; (A, B)</code> takes a <code>B</code> and returns a result <code>A</code> plus a value of type <code>B</code>. If you feed that <code>B</code> back to the function it gives you the next iteration, and so on. http://stackoverflow.com/questions/1738870/how-difficult-is-it-to-learn-functional-programming-languages/1738903#1738903 Comment by Apocalisp on How difficult is it to learn functional programming languages? Apocalisp 2009-11-15T23:54:05Z 2009-11-15T23:54:05Z I disagree most vehemently. A purely functional language will keep beginners on the straight and narrow. LISP and the ML variants will let you lie, cheat, and think impure thoughts. If you want to learn FP quickly, go with Haskell or Clean. http://stackoverflow.com/questions/1734537/trying-to-make-sierpinski-triangle-generator-in-a-functional-programming-style/1737012#1737012 Comment by Apocalisp on Trying to make sierpinski triangle generator in a functional programming style Apocalisp 2009-11-15T14:58:46Z 2009-11-15T14:58:46Z This is a well-known &quot;pattern&quot;, and it even has a name. It's the cofree coalgebra of the Identity Functor. An implementation is provided in the standard libraries as the <code>scala.Stream</code> class. http://stackoverflow.com/questions/1735146/ways-to-get-the-middle-of-a-list-in-haskell/1735541#1735541 Comment by Apocalisp on Ways to get the middle of a list in Haskell? Apocalisp 2009-11-15T05:24:13Z 2009-11-15T05:24:13Z It's nicer to say: middle . tail . init $ l http://stackoverflow.com/questions/1717553/pointer-equality-in-haskell/1718575#1718575 Comment by Apocalisp on Pointer equality in Haskell? Apocalisp 2009-11-12T19:40:02Z 2009-11-12T19:40:02Z Well, yes, if you introduce an absurdity or infinite recursion, that's your fault. http://stackoverflow.com/questions/1720318/examples-of-functional-programs-writing-themselves-via-type-analysis/1720531#1720531 Comment by Apocalisp on Examples of functional programs 'writing themselves' via type analysis Apocalisp 2009-11-12T14:19:37Z 2009-11-12T14:19:37Z The actual type of <code>let om f xo = None</code> is <code>'a -&gt; 'b -&gt; 'c option</code>, so it's not only uninteresting, but of the wrong type. Type annotations notwithstanding. http://stackoverflow.com/questions/1718815/finding-whether-or-not-an-item-is-contained-within-an-k-ary-tree/1718821#1718821 Comment by Apocalisp on Finding whether or not an item is contained within an k-ary tree Apocalisp 2009-11-12T00:11:27Z 2009-11-12T00:11:27Z Maybe editing the answer would be a better idea than adding comments that make no sense after the answer has been corrected. http://stackoverflow.com/questions/1717553/pointer-equality-in-haskell/1718575#1718575 Comment by Apocalisp on Pointer equality in Haskell? Apocalisp 2009-11-11T23:39:45Z 2009-11-11T23:39:45Z But what does &quot;same function&quot; mean exactly? (\x -&gt; x) is the same function as (\x -&gt; x). The same function as ((\x y -&gt; y) x), etc. I think what you need is an additional datum to track the &quot;address&quot; of a function in your interpreted language. A monad that models an a -&gt; (Int, a) coalgebra might be in order. http://stackoverflow.com/questions/1693181/scheme-implementing-n-argument-compose-using-fold/1693903#1693903 Comment by Apocalisp on Scheme: Implementing n-argument compose using fold Apocalisp 2009-11-08T17:15:10Z 2009-11-08T17:15:10Z (define curry (lambda (f) (lambda (x) (lambda y (f x y)))))