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

learn more… | top users | synonyms

1
vote
1answer
40 views

Python: compose list from nested iterators

I have a list of tuples that I need to expand it by adding two elements, each of them comes from a list. So I have [(1, 2, 3)] and two iterators it1 = (i for i in ['a1', 'a2']) and it2 = (i for i in ...
1
vote
2answers
105 views

Haskell function composition, type of (.)(.) and how it's presented

So i know that: (.) = (f.g) x = f (g x) And it's type is (B->C)->(A->B)->A->C But what about: (.)(.) = _? = _? How this is represented? I thought of: (.)(.) = (f.g)(f.g)x = f(g(f(g x))) // this ...
3
votes
1answer
76 views

Smalltalk: using a block as a block argument?

Is it possible to pass a block statement as a block argument for a given depth k? For example, if k = 1, I have f(x) defined as [x + 3], but if k=2, I want f(f(x)), which is [[x + 3] + 3]. This is for ...
3
votes
3answers
109 views

Type inference list with function composition

I'm attempting to take the square of the sum of integers in Haskell using a fold. However, I'm getting a cryptic error from GHCi. Here is my one-liner: ((^2) . foldl) (+) 0 [1..100] What I'm ...
3
votes
2answers
87 views

Workarounds for lack of varargs in Erlang

Completely new to Erlang. I'm trying to define some functions for function composition, such as compose, juxt and pipe but running into the fact that Erlang doesn't have (to my knowledge) varargs so ...
4
votes
3answers
82 views

Manipulating list after function performs recursion

I am new to Haskell and I am trying to perform some recursive function on a list, and after the recursion is done, I would like to access the output list from the recursion to perform an additional ...
3
votes
3answers
85 views

Composing functions in Haskell with arithmetic-type functions

I'm learning Haskell now and I'm trying to play around with function composition. I wrote two functions. let func1 x y = x + y let func2 t = t*2 However, when I try to compose these two functions, ...
3
votes
3answers
158 views

map . foldr function composition - Haskell

So, let's straight to the point. :t (map.foldr) (map.foldr) :: (a1 -> a -> a) -> [a] -> [[a1] -> a] What is [[a1] -> a]? I'm really trying to understand this composition, so I was ...
8
votes
3answers
247 views

foldl . foldr function composition - Haskell

So, I'm really frying my brain trying do understand the foldl.foldr composition. Here is a example: (foldl.foldr) (+) 1 [[1,2,3],[4,5,6]] The result is 22, but what's really happening here? To me ...
1
vote
2answers
95 views

Does function composition working differently in let?

To strip the last item from a list in GHCi I can reverse the list, take the tail and then reverse it again. For example, reverse(tail(reverse([1,2,3,4]))) As there are quite a lot of brackets there ...
4
votes
1answer
85 views

Is this OCaml function composition operator definition/expression correct?

let (++) f g x = f (g x) in let f x = x + 1 in let g x = x * 2 in (f++g) 1;; Is the above expression correct? It seems to me that the above code should be just like defining f++g x = 2 ...
4
votes
3answers
168 views

Finding haskell higher-order functions

A function which zips a list onto itself can be defined as: let adjacent1 l = zip l $ tail l This works, but I'd like to define it in pointfree style. To do this, I define a function dollarize: ...
1
vote
1answer
100 views

Boost function composition

Suppose I want to have a function double adapter(double), is there a general way to compose it with a boost::function<double(...)> functor to produce another boost::function<double(...)> ...
4
votes
2answers
142 views

Pointfree Composition with Multiple Variables

I've started to wrap my head around it, and rather like using it for simple situations in which I can essentially pipe the values from one output to one input. A simple example of a pointfree ...
1
vote
1answer
104 views

How to cleanly hand parameters from function to function (like composition)

let myFunc x y = List.fold (&&) true [func1 x y; func2 x y] I don't know all the different operators and techniques in F#, but was hoping I could just plop some operator in place of "x ...
7
votes
2answers
274 views

Function composition hint

just looking for an explanation how does following composition work: (=<<) . return where (=<<) :: (a -> m b) -> m a -> m b return :: a -> m a (.) :: (b -> c) ...
7
votes
2answers
247 views

efficient list append/prepend through function composition

Some months ago I read somewhere of an efficient approach for appending and prepending lists to other lists in O(1) by representing them with function compositions that, once evaluated, build in O(n) ...
3
votes
2answers
190 views

How to create a K combinator in the enchanted forest? (To Mock a Mockingbird)

Recall that the K combinator is a constant function. It always returns its first argument: Kxy = x for all y In the book To Mock a Mockingbird the author presents an example of an enchanted forest ...
4
votes
5answers
319 views

Haskell: Using map in function composition

I am relatively new to Haskell so apologies if my question sounds stupid. I have been trying to understand how function composition works and I have come across a problem that I was wondering someone ...
2
votes
1answer
226 views

Why do we need to use brackets while composing functions in haskell?

Let say I have need to define the following function: Identity = chr.ord But the above line won't work, the correct way would be: Identity = (chr.ord) Haskell usually is quite a minimalist ...
2
votes
2answers
95 views

Combine one-arg functions into a multi-arg one in Clojure

I wonder if there is an idiom in Clojure for combining several one argument functions into a new function accepting a vector. The new function should apply the first function to the first argument and ...
5
votes
1answer
167 views

Use a function a → b as “monadic” function a → m b

I am currently playing around with Haskell basics and stumbled upon the following "use case": ghci> let divideTenBy x | x == 0 = Nothing | otherwise = Just (10 / x) ghci> let composed = ...
1
vote
4answers
345 views

How do I create Haskell functions that return functions?

I would like to create three Haskell functions: a, b, and c. Each function is to have one argument. The argument is one of the three functions. I would like function a to have this behavior: if ...
6
votes
1answer
189 views

Haskell: difference in performance from different function composition?

The following code: import Control.Exception import Data.List updateAverage :: (Fractional t) => (t, t) -> t -> (t, t) updateAverage (old_value, old_counter) x = let new_counter = ...
9
votes
1answer
238 views

Variadic compose function?

I'm trying to write a variadic function composition function. Which is basically the (.) except that the second argument function is variadic. This should allow expressions like: map even . zipWith ...
25
votes
3answers
1k views

runST and function composition

Why does this typecheck: runST $ return $ True While the following does not: runST . return $ True GHCI complains: Couldn't match expected type `forall s. ST s c0' with actual type ...
8
votes
2answers
239 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" ...
7
votes
4answers
624 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: ...
0
votes
2answers
177 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 ...
4
votes
1answer
123 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.
9
votes
1answer
2k 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 ...
2
votes
3answers
292 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
1
vote
1answer
142 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 => ...
7
votes
1answer
273 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 ...
22
votes
2answers
521 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 ...
16
votes
3answers
455 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 ...
12
votes
2answers
852 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 ...
2
votes
2answers
121 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 ...
8
votes
1answer
491 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 ...
4
votes
3answers
267 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 ...
0
votes
2answers
304 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 ...
6
votes
5answers
210 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. ...
8
votes
2answers
848 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 ...
0
votes
5answers
165 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 ...
11
votes
5answers
915 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) -> ...
8
votes
2answers
442 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 ...
-2
votes
2answers
215 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?
3
votes
3answers
375 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
564 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 ...
5
votes
7answers
266 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 ...

1 2