Tagged Questions
A combinator is a function or definition with no free variables.
122
votes
14answers
22k views
What is a y-combinator?
A y-combinator is a comp-sci concept from the "functional" side of things. Most programmers don't know much at all about them, if they've even heard about them.
What is a y-combinator?
How do they ...
25
votes
14answers
2k views
What are some interesting uses of high order functions?
I'm currently doing a Functional Programming course and I'm quite amused by the concept of high-order functions and functions as first class citizens. However, I can't yet think of many practically ...
21
votes
4answers
1k views
How does Data.MemoCombinators work?
I've been looking at the source for Data.MemoCombinators but I can't really see where the heart of it is.
Please explain to me what the logic is behind all of these combinators and the mechanics of ...
21
votes
9answers
2k views
Good explanation of “Combinators” (For non mathematicians)
Anyone got a good explanation of "combinators" (Y-combinators etc. and NOT the company)
I'm looking for one for the practical programmer who understands recursion and higher-order functions, but ...
18
votes
5answers
1k views
In Haskell performing `and` and `or` for boolean functions
I just wrote the following two functions:
fand :: (a -> Bool) -> (a -> Bool) -> a -> Bool
fand f1 f2 x = (f1 x) && (f2 x)
f_or :: (a -> Bool) -> (a -> Bool) -> a ...
18
votes
4answers
480 views
What are zygo/meta/histo/para/futu/dyna/whatever-morphisms?
Is there a list of them with examples accessible to a person without extensive category theory knowledge?
14
votes
6answers
708 views
Shorter way to write this code
The following pattern appears very frequently in Haskell code. Is there a shorter way to write it?
if pred x
then Just x
else Nothing
14
votes
4answers
764 views
foldl versus foldr behavior with infinite lists
The code for the myAny function in this question uses foldr. It stops processing an infinite list when the predicate is satisfied.
I rewrote it using foldl:
myAny :: (a -> Bool) -> [a] -> Bool
...
12
votes
2answers
208 views
Are there “type-level combinators”? Will they exist in some future?
Much of what makes haskell really nice to use in my opinion are combinators such as (.), flip, $ <*> and etc. It feels almost like I can create new syntax when I need to.
Some time ago I was ...
10
votes
2answers
173 views
What are super combinators and constant applicative forms?
I'm struggling with what Super Combinators are:
A supercombinator is either a constant, or a combinator which contains only supercombinators as subexpressions.
And also with what Constant ...
10
votes
1answer
148 views
Explanation of combinators for the working man
Combinators get a lot of hype in some circles. "Some people swear by them, some people swear at them." There's only one problem that I have with combinators .... I don't know what they are!!
What ...
10
votes
7answers
744 views
Haskell map/zip Vs. list comprehension
Which of the following are you most likely to write?
r = zip xs $ map sqrt xs
or
r = [(x, sqrt x) | x <- xs]
Sample code on the Internet seems to indicate that the former is more abundant and ...
9
votes
2answers
258 views
Folding flatMap/bind over a list of functions (a.k.a. Name That Combinator!)
In the process of writing a simple RPN calculator, I have the following type aliases:
type Stack = List[Double]
type Operation = Stack => Option[Stack]
... and I have written a curious-looking ...
9
votes
5answers
1k views
haskell - foldl vs foldr question
I wanted to test foldl vs foldr. From what I've seen you should use foldl over foldr when ever you can due to tail reccursion optimization.
This makes sense. However, after running this test I am ...
8
votes
3answers
278 views
Are these two combinators already available in Haskell?
I need binary combinators of the type
(a -> Bool) -> (a -> Bool) -> a -> Bool
or maybe
[a -> Bool] -> a -> Bool
(though this would just be the foldr1 of the first, and I ...
7
votes
3answers
314 views
Short circuiting (&&) in Haskell
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:
f a b = ((a+b) == 2) ...
7
votes
6answers
696 views
How foldr works
Can anybody explain how foldr works?
Take these examples:
Prelude> foldr (-) 54 [10,11]
53
Prelude> foldr (\x y -> (x+y)/2) 54 [12,4,10,6]
12.0
I am confused about these executions, any ...
7
votes
7answers
2k views
Python implementation of Parsec?
I recently wrote a parser in Python using Ply (it's a python reimplementation of yacc). When I was almost done with the parser I discovered that the grammar I need to parse requires me to do some ...
6
votes
2answers
95 views
Does this combinator have a name?
This function f accepts an argument list and returns another callable with the same argument list, so that other functions can be applied to it.
from operator import add, mul
def f(*a, **kw):
...
6
votes
1answer
179 views
Unsure of how to design a useful library using combinators
I've been reading about combinators and seen how useful they are (for example, in Haskell's Parsec). My problem is that I'm not quite sure how to use them practically.
Here's an outline of the ...
6
votes
4answers
401 views
What is the difference between liftM and mapM in Haskell
What is the difference between the functions liftM and mapM?
6
votes
2answers
270 views
How to create a lazy-seq generating, anonymous recursive function in Clojure?
Edit: I discovered a partial answer to my own question in the process of writing this, but I think it can easily be improved upon so I will post it anyway. Maybe there's a better solution out there?
...
6
votes
1answer
324 views
Scala: Can I nudge a combinator parser to be locally greedy?
Suppose I have an ambiguous language expressed in combinator parser. Is there a way to make certain expressions locally greedy? Here's an example of what I mean.
import ...
6
votes
4answers
601 views
Implement zip using foldr
I'm currently on chapter 4 of Real World Haskell, and I'm trying to wrap my head around implementing foldl in terms of foldr.
(Here's their code:)
myFoldl :: (a -> b -> a) -> a -> [b] ...
5
votes
2answers
275 views
Y Combinator in Scheme using Define
In order to learn what a fixed-point combinator is and is used for, I wrote my own. But instead of writing it with strictly anonymous functions, like Wikipedia's example, I just used define:
(define ...
5
votes
3answers
387 views
Impementation of the Ruby <=> Combinator
Not infrequently, one wants to implement the <=> (comparison, or "spaceship") operator on a product data type, i.e., a class with multiple fields (all of which (we hope!) already have <=> ...
5
votes
1answer
1k views
Scala combinator parsers - distinguish between number strings and variable strings
I'm doing Cay Horstmann's combinator parser exercises, I wonder about the best way to distinguish between strings that represent numbers and strings that represent variables in a match statement:
def ...
4
votes
2answers
486 views
Parallel map in haskell
Is there some substitute of map which evaluates the list in parallel? I don't need it to be lazy.
Something like: pmap :: (a -> b) -> [a] -> [b] letting me pmap expensive_function big_list ...
4
votes
2answers
229 views
Role of Combinators in Concatenative/Tacit Programming Languages
I have a question about what exact role do higher-order combinators (or function producers) hold in concatenative/tacit programming.
Additionally I would like to ask if there is another way to ...
4
votes
3answers
931 views
Haskell: surprising behavior of “groupBy”
I'm trying to figure out the behavior of the library function groupBy (from Data.List), which purports to group elements of a list by an "equality test" function passed in as the first argument. The ...
3
votes
1answer
220 views
Haskell: some and many
What are some and many in Control.Applicative.Alternative good for? If I write something like some $ Just 42, it seems to cause infinite recursion, which seems not very useful...
3
votes
4answers
308 views
How to Merge two Observables so the result completes when the any of the Observables completes?
I have this code:
var s1 = new Subject<Unit>();
var s2 = new Subject<Unit>();
var ss = s1.Merge(s2).Finally(() => Console.WriteLine("Finished!"));
ss.Subscribe(_ => ...
3
votes
3answers
325 views
Backtracking in scala parser combinators?
It seems like scala's parser combinators don't backtrack. I have a grammar (see bottom) which can't parse the following "stmt" correctly:
copy in to out .
That should be easy to parse with ...
3
votes
4answers
500 views
Haskell - Foldr and Foldl further explanation and example
I've looked at http://www.haskell.org/haskellwiki/Foldr_Foldl_Foldl%27
and http://haskell.org/haskellwiki/Fold as well as a few others and they explain it fairly well.
I'm still having trouble on how ...
3
votes
2answers
434 views
How would you (re)implement iterate in Haskell?
iterate :: (a -> a) -> a -> [a]
(As you probably know) iterate is a function that takes a function and starting value. Then it applies the function to the starting value, then it applies ...
3
votes
1answer
1k views
parser combinator: how to terminate repetition on keyword
I'm trying to figure out how to terminate a repetition of words using a keyword. An example:
class CAQueryLanguage extends JavaTokenParsers {
def expression = ("START" ~ words ~ "END") ^^ { x ...
3
votes
3answers
464 views
Combinator logic axioms
I'm carrying out some experiments in theorem proving with combinator logic, which is looking promising, but there's one stumbling block: it has been pointed out that in combinator logic it is true ...
2
votes
1answer
78 views
Fixed point of K combinator
The K combinator is K := (λxy.x) and the fixed point combinator is Y := λf.(λx.f x x) (λx.f x x). I tried to calculate YK:
YK = (λx.Kxx)(λx.Kxx) = (λx.x)(λx.x) = (λx.x) = I
So because YK is the ...
2
votes
1answer
51 views
Combinatory method like tap, but able to return a different value?
I'm going through a phase of trying to avoid temporary variables and over-use of conditional where I can use a more fluid style of coding. I've taken a great liking to using #tap in places where I ...
2
votes
1answer
106 views
Expressing Y in term of SKI-Combinators in JavaScript
I was fiddling with Cominators in JavaScript and was being proud of (hopefully) getting S to work when I stumbled upon Wikipedia saying: "The Y combinator can be expressed in the SKI-calculus as: Y = ...
2
votes
1answer
124 views
CSS pseudo-classes :focus and :active not working with the ~ combinator in IE8
im so confused with the CSS Pseudo classes :focus or :active,because it works well with :hover in ie8 ,but don't work with :focus or :active.
like this:
<!doctype html>
<head>
...
2
votes
1answer
163 views
Designing a monadic type
I'd need some help to design a monadic datatype, I seem to have trouble wrapping my head around the idea, but I pretty definitely know what I want. Only the type checker seems to require some ...
2
votes
2answers
142 views
Fixed point combinator for mutually recursive functions?
Is there a fixed point combinator for creating tuples of mutually recursive functions? I.e. I'm looking for something like the Y-Combinator but which takes multiple "recursive"* functions, and will ...
2
votes
1answer
170 views
U combinator on a fibonacci : how would you translate this code to python?
I am trying to learn about combinators and I am having trouble understand the example given at (Y overriding self-application). I think I am beginning to grasp the concept but I am still far from ...
1
vote
2answers
153 views
Fixed Point Generator in C# Generics
I have tried to define a fixed point generator in C# that you see in many functional languages. I believe foldr is usually defined in terms of a fixed point generator sometimes. I'll show it's ...
1
vote
1answer
148 views
Better interface for composing destructive operators, Part II
See my earlier question about composing opencv operators for an explanation of what is going on.
I thought up a new interface that allows to compose destructive binary operations in a kind of ...
1
vote
1answer
89 views
problems with css combiner?
I am working with a custom framework.
When I design my sites I split the CSS rules into several files eg
typography.css
links.css
master.css
tables.css
etc
Now the obvious issue with this is ...
1
vote
0answers
11 views
is there a way to determine generally if a variable in a vector type object is another vector or a scalar?
My question is whether it is possible through general methods to determine in any high-level language whether an item in a vector-type variable (a list, a string, an array, etc. anything that can be ...
1
vote
2answers
256 views
returning meaningful error messages from a parser written with Scala Parser Combinators
I try to write a parser in scala using Parser Combinators. If I match recursively,
def body: Parser[Body] =
("begin" ~> statementList ) ^^ {
case s => { new Body(s); }
}
def ...
1
vote
3answers
770 views
Remove duplicates from list
I have datatype:
data SidesType = Sides Int Int Int deriving (Show)
And I need a function which get a list of SidesType and remove duplicates from it.
*Main> let a = [Sides 3 4 5,Sides 3 4 ...