10
votes
4answers
258 views
Higher-kinded generics in Java
Suppose I have the following class:
public class FixExpr {
Expr<FixExpr> in;
}
Now I want to introduce a generic argument, abstracting over the use of Expr …
3
votes
Haskell: Creating Type Classes for Zippers
You can also use type synonym families instead of multi-parameter type classes and functional dependencies. In cases like these they offer a cleaner and easier-to-understand solution. In that case …
8
votes
What are zygo/meta/histo/para/futu/dyna/whatever-morphisms?
Start with learning about catamorphisms; those are the easiest to grasp. You already know one: foldr!
Then go for anamorphisms (unfoldr) and paramorphisms. Only th …
15
votes
Haskell: difference between . (dot) and $ (dollar sign)
Also note that ($) is the identity function specialised to function types. The identity function looks like this:
id :: a -> a
id x = x
While …
2
votes
Sparse arrays in Haskell?
Data.Map (Int,Int) MyClass is an excellent suggestion; try that first.
If you run into space problems with that, try IntMap (IntMap MyClass). IntMaps …
1
vote
Exemplary Haskell Game Code
Being something I wrote myself I can't comment on whether it was well-written, but a while ago I wrote the beginnings of a MUD driver called …
5
votes
Hidden features of Haskell
Patterns in top-level bindings
five :: Int
Just five = Just 5
a, b, c :: Char
[a,b,c] = "abc"
How cool is that! Saves you that call to from …
5
votes
Is there a Haskell compiler or preprocessor that uses strict evaluation?
See also ghc-strict-plugin, an example for GHC's pl …
4
votes
Contrasting C# generics with Haskell parameterized types
Another big difference is that C# generics don't allow abstraction over type constructors (i.e. kinds other than *) while Haskell does. Try translating the following datatype into a C# class:
…
1
vote
When should I use $ (and can it always be replaced with parentheses)?
If I look at your question and the answers here, Apocalisp and you are both right:
$ is preferred to parentheses under certain circumstances (see his answer) …
1
vote
Haskell Typeclass shorthand
No.
Your solution of a superclass implying the other classes is the closest to what you want that is possible in Haskell. Even though that requires manual instances of that new class it is …
2
votes
Common programming mistakes for Haskell developers to avoid?
The difference between [] and [[]]: the empty list and the list with 1 element, namely the empty list. This one especially pops up in base cases of recursive functions. …
0
votes
Finding the leaves of an inductively-defined tree
flatten node = node : concatMap flatten (genTree node)
…
1
vote
producer and consumer problem in haskell?
Besides the stateful approaches mentioned by Norman and Don, you can also think of normal function application and laziness as producer and consumer.
Here is a producer for the natural numb …
0
votes
Summation notation in Haskell
There is no difference. That page is simply saying that sum is implemented using foldl. Just use sum whenever you need to calculate the sum of a list of numbe …
