Tagged Questions

Applying one function to the result of another is known as "function composition" - f(g(x)) = f.g See also pointfree.

learn more… | top users | synonyms

74
votes
6answers
10k views

Haskell: difference between . (dot) and $ (dollar sign)

Can anybody explain what the difference is in Haskell between the dot (.), and the dollar sign ($). As I understand it, they are both syntactic sugar for not needing to use parentheses.
32
votes
6answers
1k views

Haskell function composition (.) and function application ($) idioms: correct use

I have been reading Real World Haskell and I am nearing the end but a matter of style has been niggling at me to do with the (.) and ($) operators. When you write a function that is a composition of ...
18
votes
2answers
353 views

Folding, function composition, monads, and laziness, oh my?

I am puzzled. I can write this: import Control.Monad main = print $ head $ (foldr (.) id [f, g]) [3] where f = (1:) g = undefined and the output is 1. That makes sense, because it ...
18
votes
5answers
4k views

Dot Operator in Haskell: need more explanation

I'm trying to understand what the dot operator is doing in this Haskell code: sumEuler = sum . (map euler) . mkList The entire source code is below. My understanding: The dot operator is taking ...
15
votes
3answers
345 views

How do I organize my pure functions with my monadic actions idiomatically

I've decided today is the day I fix some of my pure functions that are unnecessarily running in a monadic action. Here's what I have. flagWorkDays :: [C.Day] -> Handler [WorkDay] flagWorkDays ...
11
votes
2answers
525 views

Haskell: type inference and function composition

This question was inspired by this answer to another question, indicating that you can remove every occurrence of an element from a list using a function defined as: removeall = filter . (/=) ...
10
votes
2answers
323 views

Function composition of methods, functions, and partially applied functions in Scala

Somewhat similar to this question, I've been working through Twitter's Scala School tutorial, and quickly ran into the same problem that commenter had (which was great, because I went to bed thinking ...
10
votes
5answers
415 views

Haskell function composition operator of type (c→d) → (a→b→c) → (a→b→d)

Ordinary function composition is of the type (.) :: (b -> c) -> (a -> b) -> a -> c I figure this should generalize to types like: (.) :: (c -> d) -> (a -> b -> c) -> ...
9
votes
3answers
270 views

Is it a good idea to have a syntax sugar to function composition in Python?

Some time ago I looked over Haskell docs and found it's functional composition operator really nice. So I've implemented this tiny decorator: from functools import partial class _compfunc(partial): ...
9
votes
5answers
260 views

Composing functions in Java?

I'm writing demo code for an API we've created and I keep running into the same problem where I'm repeating myself, over and over ad nauseum. I am painfully aware that Java is scheduled to have ...
8
votes
2answers
309 views

Function composition in Haskell with tuple arguments

Sometimes I have two functions of the form: f :: a -> (b1,b2) h :: b1 -> b2 -> c and I need the composition g. I solve this by changing h to h': h' :: (b1,b2) -> c Can you please ...
7
votes
4answers
106 views

Combining predicates in Python

I have some predicates, e.g.: is_divisible_by_13 = lambda i: i % 13 == 0 is_palindrome = lambda x: str(x) == str(x)[::-1] and want to logically combine them as in: filter(lambda x: ...
7
votes
1answer
130 views

Composing a chain of 2-argument functions

So I have a list of a functions of two arguments of the type [a -> a -> a] I want to write a function which will take the list and compose them into a chain of functions which takes length+1 ...
7
votes
2answers
224 views

Am I properly using function composition?

In an effort to understand the capabilities of functional programming I put together a few basic functions that you can compose together to build complex regular expressions. Now after some testing I ...
7
votes
3answers
476 views

Haskell dot operator

I try to develop a simple average function in Haskell. This seems to work: lst = [1, 3] x = fromIntegral (sum lst) y = fromIntegral(length lst) z = x / y But why doesn't the following version ...
6
votes
2answers
99 views

Haskell Rewrite Rules and Function Composition

Why does haskell require multiple rewrite rules depending on the function composition technique and length? Is there a way to avoid this? For example, given the following code... {-# RULES "f/f" ...
6
votes
5answers
133 views

composition with dyadic operator?

I want to do something fairly simple; I am using the operator (++) with Data.Map insertWith, and it works fine, but I want to eliminate duplicates in the value created, so want to compose it with nub. ...
6
votes
2answers
267 views

Expressing long chain of compositions in Haskell

(unimportant background info / motivation) I was implementing a different version of nub, inspired by the Yesod book's discouragement of using it. map head . group . sort is more efficient than a ...
6
votes
3answers
316 views

Composite functions in ocaml

How can I define a composite function in a functional language, in particular with Ocaml? For example, if I write a function that calculates the negation of the result of another function, that is: ...
5
votes
1answer
124 views

compose function and functional module

Python 3.2 documentation refers to Collin Winter's functional module which contains function compose: The compose() function implements function composition. In other words, it returns a wrapper ...
5
votes
1answer
173 views

function composition with reverse syntax

If I want to apply f first and g second, I have to write: g . f Is there another standard syntax that would allow me to write the functions in the reverse order? f <whatever> g I know I ...
5
votes
7answers
188 views

Error when trying to use function composition in Haskell

I have just began recently to learn Haskell, more specifically on the topics of function composition, partial functions, maps, filters and sectioning. On one of the exercises am asked to modify the ...
5
votes
1answer
422 views

Serialize Composed Func?

This works fine: Func<string, string> func1 = s => s + "func"; ViewState["function"] = func1; However, this does not: Func<string, string> func1 = s => s + "func"; ...
4
votes
1answer
82 views

Tuple and function composition

Is there a better way to express (\(a, b) -> a < b) with function composition? I feel like I'm missing something and experimenting with curry only confused me more.
4
votes
3answers
204 views

Confusion about function composition in Haskell

Consider following function definition in ghci. let myF = sin . cos . sum where, . stands for composition of two function (right associative). This I can call myF [3.14, 3.14] and it gives me ...
4
votes
1answer
278 views

Generic function composition in Haskell

I was reading here, and I noticed that, for example, if I have the following function definitions: a :: Integer->Integer->Integer b :: Integer->Bool The following expression is invalid: ...
3
votes
3answers
234 views

What am I missing: is function composition with multiple arguments possible?

I understand the basics of function composition in F#, as, for example, described here. Maybe I am missing something, though. The >> and << operators seem to have been defined with the ...
3
votes
1answer
330 views

Continuation passing style - function composition

I'm learning about CPS with Racket, and I've managed to write up these functions: ;lift a regular single-arg function into CPS (define (lift/k f) (lambda (x k) (k (f x)))) ;compose two CPS ...
3
votes
1answer
433 views

Function Composition VS Function Application

Do anyone can give example of function composition? This is the definition of function composition operator? (.) :: (b -> c) -> (a -> b) -> a -> c f . g = \x -> f (g x) This ...
3
votes
6answers
740 views

What does a fullstop or period or dot (.) mean in Haskell?

I really wish that Google was better at searching for syntax: decades :: (RealFrac a) => a -> a -> [a] -> Array Int Int decades a b = hist (0,9) . map decade ...
2
votes
3answers
75 views

lambda expressions c#

I would like to know how to make function composition using lambda expression. I mean, I have 2 function f(x) and g(x). How to make their composition f(g(x)) using lambda expressions? Thanks
2
votes
2answers
111 views

Tupled function composition

I'm curious why this let f = (fun a b -> a, b) >> obj.Equals gives the error No accessible member or object constructor named 'Equals' takes 1 arguments but this works let f = (fun ...
2
votes
2answers
154 views

Haskell Type Error From Function Application to Function Composition

This question is related to this http://stackoverflow.com/questions/3116165/function-composition-vs-function-application which answered by antal s-z. How you can get this ? map has type (a -> b) ...
2
votes
2answers
250 views

Applying a function to an arbitrarily long list of arguments

I want to create a function apply that takes a function with an arbitrary amount of arguments as well as a list of integers, and returns the result of the function (Where each integer in the list is ...
2
votes
3answers
293 views

Python list as *args?

I have two Python functions, both of which take variable arguments in their function definitions. To give a simple example: def func1(*args): for arg in args: print arg def func2(*args): ...
2
votes
6answers
427 views

Function composition in Java

I'm trying to implement a lazy sequence (meaning that the next item is only calculated when you invoke the step function), and one of the methods it should have is "map" which receives a function that ...
1
vote
1answer
105 views

Haskell: Compose a function of specific type with one of general type?

I was writing a quick one-liner in GHCi and tried to compose sum with map. I figured the reason it failed is because map gives output of a general type [b] whereas sum takes in specific input Num a => ...
0
votes
2answers
75 views

a function composition VS a function that acts on another function

I have numerous reusable functions, all with the same signature (they take a record and return a float). I often need to combine functions into a new function. Let's say I want to create a function ...
0
votes
2answers
140 views

Python function composition (max recursion depth error, scope?)

What is wrong with this function? It seems like a scope error (although I thought I had fixed that by placing each callable in the list, instead of using it directly). Error is max recursion depth ...
0
votes
5answers
152 views

Combine 2 list functions into 1?

How would I combine the following 2 functions: replaceNth n newVal (x:xs) | n == 0 = newVal:xs | otherwise = x:replaceNth (n-1) newVal xs replaceMthNth m n v arg = replaceNth m (replaceNth n v ...
0
votes
2answers
190 views

Haskell: composing function with two floating arguments fails

I am trying to compose a function of type (Floating a) => a -> a -> a with a function of type (Floating a) => a -> a to obtain a function of type (Floating a) => a -> a -> a. I have the following ...
0
votes
1answer
760 views

Python function composition

I've tried to implement function composition with nice syntax and here is what I've got: from functools import partial class _compfunc(partial): def __lshift__(self, y): f = lambda ...
-2
votes
2answers
142 views

Confusing function application and function composition in Haskell

The operation (filter (`notElem` "'\"").[(1,'a','%',"yes")]) gives an error. How can apply this filter on that list properly?