Tagged Questions
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.
21
votes
3answers
2k 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 ...
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 ...
17
votes
1answer
457 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 ...
14
votes
2answers
464 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 ...
11
votes
2answers
248 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 = ...
10
votes
2answers
288 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
3answers
438 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 ...
9
votes
4answers
1k 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 ...
8
votes
4answers
159 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 ...
6
votes
1answer
801 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 ...
5
votes
2answers
370 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 ...
5
votes
3answers
376 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 <- ...
4
votes
4answers
157 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 ...
4
votes
6answers
227 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 =
...
4
votes
1answer
280 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 ...
2
votes
1answer
85 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 ...
2
votes
3answers
166 views
How do I make interact point-free?
shortLinesOnly :: IO ()
shortLinesOnly = interact result
where
shortLength = 11
onlyShorts = (<= shortLength) . length
shortLines = filter onlyShorts . ...