The pointfree (also called pointless) style of defining a function is to express it directly in terms of existing functions, without mentioning the arguments of the function being defined. Function composition and partial application are often used.
0
votes
3answers
54 views
Point-free: confused about where to put parenthesis
let list_to_string = (String.concat "") (List.map (String.make 1));;
This is wrong, but how do I make it understand that the argument is still to be supplied? The argument is expected to be of type ...
5
votes
3answers
165 views
Please explain (forM_ [stdout, stderr] . flip hPutStrLn) :: String -> IO ()
I'm having trouble understanding how this Haskell expression works:
import Control.Monad
import System.IO
(forM_ [stdout, stderr] . flip hPutStrLn) "hello world"
What is the . flip hPutStrLn part ...
25
votes
5answers
1k views
How can I understand “(.) . (.)”?
I believe I understand fmap . fmap for Functors, but on functions it's hurting my head for months now.
I've seen that you can just apply the definition of (.) to (.) . (.), but I've forgot how to do ...
7
votes
1answer
313 views
Converting expression to pointfree style (Haskell)
I wrote this code and I have to rewrite it to the pointfree style:
num_of_occ ele list = length(filter(==ele)list)
So I did this:
num_of_occ ele = length . filter((==)ele)
It works. Than I did ...
2
votes
2answers
185 views
Count frequency of each element in a list
I try to write a program which will count the frequency of each element in a list.
In: "aabbcabb"
Out: [("a",3),("b",4),("c",1)]
You can view my code in the following link: ...
4
votes
2answers
174 views
Dot operator in haskell with multi-parameter functions
I want to write a function point-free in haskell, to keep things simple lets say I want to make this function:
maxmin :: Ord a => a -> a -> a -> a
maxmin a b c = max a (min b c)
I can ...
1
vote
2answers
175 views
How do I re-write a Haskell function of two argument to point-free style
I have the following function in Haskell
agreeLen :: (Eq a) => [a] -> [a] -> Int
agreeLen x y = length $ takeWhile (\(a,b) -> a == b) (zip x y)
I'm trying to learn how to write ...
6
votes
3answers
308 views
Can any function be reduced to a point-free form?
Many functions can be reduced to point free form - but is this true for all of them?
E.g. I don't see how it could be done for:
apply2 f x = f x x
4
votes
3answers
240 views
Currying 3 Arguments in Haskell
I'm having trouble with currying a function to remove three arguments in Haskell.
Disclaimer: Not Coursework, I was asked this question by someone struggling with this today and it's been bugging ...
2
votes
2answers
152 views
Haskell: mapping function application
Part of some computation I am doing in Haskell results in a list of functions that map Float to Float. I'd like to apply a single argument to all these functions, like so:
-- x :: Float
-- functions ...
4
votes
2answers
121 views
No cooperation between readFile & IO monad when programming pointlessly
Why do countInFile1 & countInFile3 have compiler errors, when countInFile0 & countInFile2 do not. All four are the same thing.
count :: String -> String -> Int
count w = length . ...
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 ...
2
votes
5answers
212 views
Pointfree returning a tuple in Haskell
Can a pointfree function return a tuple? For instance, can the following be written in pointfree style (where f1, f2, and f3 have been defined):
(\t -> (f1 t, f2 t, f3 t))
In this case, my f1, ...
12
votes
2answers
403 views
Tacit function composition in Haskell
Say I have a mean function defined like so:
mean xs = sum xs / (fromIntegral $ length xs)
but I want it in some tacit form, like this:
mean = sum / (fromIntegral . length)
Is there a built-in ...
2
votes
3answers
171 views
applicative rewrite (Haskell)
When I don't grasp how an expression in Haskell works I often find it helps to decompose it into a more basic form.
Using the following definitions
sequenceA :: (Applicative f) => [f a] -> f ...
-1
votes
2answers
284 views
How to implement the list filter function in F# using primitives
I was reading Why functional programming matters where the author implements a couple of applications using foldr and function composition. I did the some of them in F# e.g. the map function:
let ...
14
votes
4answers
405 views
Applying multiple functions to the same value point-free style in Haskell
I was bored one day and wanted to exercise my brain, so I decided to do the 99 Haskell Problems but restricted myself to doing them in point-free style. A problem that seems to crop up a lot when I'm ...
8
votes
1answer
325 views
Performance Implications of Point-Free style
I’m taking my first baby-steps in learning functional programing using F# and I’ve just come across the Forward Pipe (|>) and Forward Composition (>>) operators. At first I thought they were just ...
49
votes
3answers
3k views
How is this fibonacci-function memoized?
By what mechanism is this fibonacci-function memoized?
fib = (map fib' [0..] !!)
where fib' 1 = 1
fib' 2 = 1 ...
2
votes
1answer
151 views
Why does changing sq to point-free change the type [duplicate]
Possible Duplicate:
What is going on with the types in this ghci session?
To try and practice a bit of haskell and learn about point free I was playing around with a function to square a ...
13
votes
2answers
703 views
Is there a better way to express the absolute error function in point-free notation?
In pointful notation:
absoluteError x y = abs (x-y)
An unclear example in pointfree notation:
absoluteError' = curry (abs . uncurry (-))
5
votes
1answer
228 views
When can eta reduction change a function's type?
What exactly is going on with the following?
> let test = map show
> :t test
test :: [()] -> [String]
> :t (map show)
(map show) :: Show a => [a] -> [String]
I am wondering how ...
3
votes
1answer
259 views
Making Haskell functions point-free
I'm a Haskell beginner and I've been playing around with point-free functions. I have problems with two functions - lambdabot's solutions were absolutely unreadable and made the code obfuscated, so ...
5
votes
1answer
168 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 = ...
4
votes
5answers
187 views
Concatenation of lists in Haskell
I want a function that takes two lists of any type and returns one (i.e. f:: [[a]] -> [[a]] -> [[a]]). Basically, too produce the 'concatenation' of the two input lists.
e.g.
> f [[1,2,3], [123]] ...
4
votes
1answer
162 views
Point-free style in Template Haskell
Consider the following Template Haskell function:
composeQ :: ExpQ -> ExpQ -> ExpQ
composeQ = \x y -> [| $(x) . $(y) |]
Is it possible to eliminate the lambda expression from the right ...
0
votes
1answer
152 views
Write f# sequence expression point free
I am learning about writing point free and things were going great until I ran into this:
let rec toSeq (reader : SqlDataReader) toItem = seq {
if reader.Read()
then
yield ...
7
votes
4answers
639 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: ...
12
votes
2answers
668 views
Writing in pointfree style f x = g x x
I am learning Haskell. I'm sorry for asking a very basic question but I cant seem to find the answer. I have a function f defined by :
f x = g x x
where g is an already defined function of 2 ...
8
votes
4answers
291 views
What is a general scheme for writing a function in pointfree style?
I am working through the 20 Intermediate Haskell Exercises at the moment, which is quite a fun exercise. It involves implementing various instances of the typeclasses Functor and Monad (and functions ...
2
votes
1answer
243 views
Trying to write a function point free, GHCI does not approve
As an exercise I'm trying to implement interesting parts of the prelude manually. Whenever I spot an opportunity to go point free I take it. However this has led me to a brick wall in the most ...
7
votes
4answers
568 views
simple Haskell functions in point-free style
I am trying to understand how to convert functions to point-free notation in Haskell. I saw this example, but it is more complicated than what I am looking for. I feel like I understand the logic ...
2
votes
3answers
201 views
How do I make interact point-free?
shortLinesOnly :: IO ()
shortLinesOnly = interact result
where
shortLength = 11
onlyShorts = (<= shortLength) . length
shortLines = filter onlyShorts . ...
5
votes
6answers
346 views
Defining functions pointfree-style in functional programming. What are the cons/pros?
Every time I write something of the form
let scorePopulation f population =
Array.map (fun i -> f i) population
I end up asking myself if wouldn't I be better writing
let scorePopulation f =
...
17
votes
1answer
542 views
Help in understanding pointfree code
When playing around with Pointfree I was presented with a piece of code that I can't seem to understand.
:pl map (\x -> x * x) [1..10]
-- map (join (*)) [1..10]
My main problem is that I don't ...
11
votes
2answers
373 views
Point-free pattern matching possible in Haskell?
Given:
data TwoInts = TwoInts Int Int
add'em :: TwoInts -> Int
add'em (TwoInts a b) = a+b
is it possible to write add'em without having to name a and b. Something like:
add'em TwoInts = ...
21
votes
6answers
3k 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 ...
20
votes
2answers
886 views
How to use (->) instances of Monad and confusion about (->)
At different questions I've found hints in comments concerning using (->) instances of Monads e.g. for realizing point-free style.
As for me, this is a little too abstract. Ok, I've seen Arrow ...
9
votes
2answers
666 views
When to use pointless style?
Many haskell programmers, including me, like pointless style, especially when writing complicated parsers. They make code more readable and less verbose. But sometimes, it's just the other way round ...
12
votes
3answers
648 views
Trick for “reusing” arguments in Haskell?
From time to time I stumble over the problem that I want to express "please use the last argument twice", e.g. in order to write pointfree style or to avoid a lambda. E.g.
sqr x = x * x
could be ...
5
votes
3answers
463 views
Point-free form versus style
Can you convert
-- tupleUnfold :: forall a. ((forall b. a -> b)) -> a -> ((b))
tupleUnfold :: Int -> ExpQ
tupleUnfold n = do
xs <- forM [1 .. n] (const . newName $ "x")
y <- ...
6
votes
1answer
368 views
Fiddling with point-free code?
I have been learning the Factor and J languages to experiment with point-free programming. The basic mechanics of the languages seem clear, but getting a feeling for how to approach algorithm design ...
10
votes
2answers
419 views
Why does the pointfree version of this function look like this?
I've been playing around with Haskell a fair bit, including practising writing functions in point-free form. Here is an example function:
dotProduct :: (Num a) => [a] -> [a] -> a
dotProduct ...
9
votes
5answers
2k views
Point-free in Haskell
I have this code that I want to make point-free;
(\k t -> chr $ a + flip mod 26 (ord k + ord t -2*a))
How do I do that?
Also are there some general rules for point free style other than "think ...
28
votes
3answers
3k views
What is point free style in Functional Programming?
A phrase that I've noticed recently is the concept of "point free" style...
First, there was this question, and also this one.
Then, I discovered here they mention "Another topic that may be worth ...
7
votes
1answer
1k views
Confusion about currying and point free style in Haskell
I was trying to implement the function
every :: (a -> IO Bool) -> [a] -> IO Bool
which was the topic for this question. I tried to do this without explicit recursion. I came up with the ...
