Tagged Questions
4
votes
2answers
114 views
Why do these folds stop at the head/tail?
I'm reading learnyouahaskell.com and currently investigating folds. In the book there are these examples:
maximum' :: (Ord a) => [a] -> a
maximum' = foldr1 (\x acc -> if x > acc then x ...
1
vote
1answer
84 views
Haskell function composition - wrongly inferred type
In the following Haskell code, the function typeError doesn't typecheck.
wrap x = [x]
listf :: [[a]] -> [[a]]
listf = id
typeCheck :: [a] -> [[a]]
typeCheck x = listf (wrap x)
typeError :: ...
0
votes
1answer
130 views
Haskell Time Issue
it is my second question about haskell and i thought my algorhythm is not bad and it gives faster results in c++ and python and there is some problem at haskell it cant give me 10^25 (maybe it gives ...
0
votes
3answers
105 views
Haskell - what is wrong with this function?
i am trying to compute the harmonic series with the function below. But there's a type error and not quite sure what it mean? another question, why [5..1] would gives an empty list?
sumHR = foldr ...
1
vote
0answers
173 views
Can every recursive function be rewritten using tail calls? [duplicate]
Can every recursive function be rewritten using tail calls? If not, what are examples of recursive functions for which this can't be done?
3
votes
2answers
151 views
How can I convert this binary recursive function into a tail-recursive form?
There is a clear way to convert binary recursion to tail recursion for sets closed under a function, i.e. integers with addition for the Fibonacci sequence:
(Using Haskell)
fib :: Int -> Int
fib ...
1
vote
3answers
128 views
Haskell IO function type mismatch
what is the problem with the following code:
nextMatch :: (a -> Bool) -> [IO a] -> (IO a, [IO a])
nextMatch f (x:xs) = do
s <- x
if f s then (return x, xs)
else nextMatch ...
16
votes
5answers
1k views
What is so special about Monads?
A monad is a mathematical structure which is heavily used in (pure) functional programming, basically Haskell. However, there are many other mathematical structures available, like for example ...
3
votes
3answers
134 views
What does sharing refer to in the implementation of a functional programming language
Sharing means that temporary data is stored if it is going to be used multiple times. That is, a function evaluates it's arguments only once. An example would be:
let x = sin x in x * x
What other ...
38
votes
4answers
4k views
What constitutes a fold for types other than list?
Consider a single-linked list. It looks something like
data List x = Node x (List x) | End
It is natural to define a folding function such as
reduce :: (x -> y -> y) -> y -> List x ...
4
votes
2answers
112 views
Haskell processing [IO String]
I've got the following function:
lines' :: [IO String]
lines' = getLine : lines'
I was hoping I could just use all the mighty list functions on
this list, like filter etc. But my knowledge about ...
8
votes
1answer
124 views
Can Haskell Data Declarations Be Bounded By Type Values
In Haskell, is there a way to limit a data type by the value of its components? I've drafted an example. Say you have a checkers game. A checker is either of the Black or White type.
data ...
2
votes
2answers
275 views
My attempt at Project Euler #92 is too slow
I'm trying to solve Project Euler problem #92 with Haskell. I started learning Haskell recently. It's the first Project Euler problem I've tried to solve with Haskell, but my piece of code doesn't ...
5
votes
1answer
85 views
How to pin dependencies in Haskell apps
I'm writing a todo.sh in Haskell now, to understand better how IO monads work, and I'm going to use cmdArgs to parse input, like argparse do in Python.
My question is, how can I pin the dependency of ...
5
votes
2answers
219 views
Haskell pointless performance - efficiently map multiple functions to the same data
I often have to map multiple functions to the same data. I have implemented dpMap to do this for me
dpMap fns = (`map` fns) . flip ($)
dpMap is one function, does this mean I read the data dt just ...
7
votes
2answers
133 views
Monadic Programming in C#
In Haskell, we have the filterM function. The source code for it is:
filterM :: (Monad m) => (a -> m Bool) -> [a] -> m [a]
filterM _ [] = return []
filterM p (x:xs) = do
...
3
votes
4answers
156 views
Haskell - Maybe arithmetic
I have been asked to implement a function which uses the following profile:
maybe_divide :: Maybe Integer -> Maybe Integer -> Maybe Integer
and responds in the following manner:
> ...
9
votes
2answers
283 views
Function Overhead in Functional Languages like Haskell or in Hybrids like Scala [closed]
Coming from imperative languages like Python, Javascript and Java, I was very often reading about function overhead and why to avoid map from a performance perspective. Obviously these are no ...
1
vote
1answer
102 views
Understanding Prime Test
I have this Haskell script:
prime :: Integer -> Bool
prime 1 = False
prime n = [ x | x <- [2..n-1], n `mod` x == 0 ] == []
What does the first x in the last line stand for? Why can I ...
0
votes
1answer
128 views
(quick)Haskell - How to filter Results to display correctly [closed]
I have a list of movies in a Database.
type Database = [Film]
type Title = String
type Actor = String
type Cast = [Actor]
type Fan = String
type Fans = [Fan]
type Year = Int
type Period = (Year, ...
0
votes
1answer
60 views
Haskell - testDatabase is applied to one argument but its type “database” has none. [closed]
My database should contain up to 25 of these data entries. At the moment, i only have these but I'm receiving an error message of:
testDatabase is applied to one argument but its type "database" ...
0
votes
2answers
90 views
Haskell - lacks accompanying binding,
I'm currently completing a project to create a film rating system / database using Haskell.
I'm trying to add the functionality that allows the user to become a fan of a film.
I have:
isFan :: ...
8
votes
2answers
187 views
An example of a type with kind * -> * which cannot be an instance of Functor
I'm very much a Haskell novice, so apologies if the answer is obvious, but I'm working through the Typeclassopedia in an effort to better understand categories. When doing the exercises for the ...
8
votes
6answers
265 views
Finding unique (as in only occurring once) element haskell
I need a function which takes a list and return unique element if it exists or [] if it doesn't. If many unique elements exists it should return the first one (without wasting time to find others).
...
153
votes
3answers
11k views
What does “coalgebra” mean in the context of programming?
I have heard the term "coalgebras" several times in functional programming and PLT circles, especially when the discussion is about objects, comonads, lenses, and such. Googling this term gives pages ...
2
votes
1answer
105 views
scanr1 in Scala?
In Scala, is there a scanr1, similar to Haskell's scanr1 which takes no zero-element and produces the intermediate results that would otherwise be created by an in-order reduce operation?
21
votes
4answers
521 views
How to concisely express function iteration?
Is there a concise, idiomatic way how to express function iteration? That is, given a number n and a function f :: a -> a, I'd like to express \x -> f(...(f(x))...) where f is applied n-times.
...
4
votes
1answer
88 views
How do you chain an arbitrarily long series of atomic parsers using applicatives?
Let's say I have this parser type:
newtype Parser a = Parser { runParser :: String -> Maybe (a, String) }
And this atomic parser unit:
satisfy :: ( Char -> Bool ) -> Parser Char
satisfy g ...
10
votes
3answers
211 views
What does uncurry ($) do?
I'm doing some excersises where I have to add a function's type and explain what it does. I'm stuck with this:
phy = uncurry ($)
The type, according to GHCi is phy :: (a -> b, a) -> b. My ...
6
votes
2answers
203 views
Applying Semantics to Free Monads
I am trying to abstract the pattern of applying a certain semantics to a free monad over some functor. The running example I am using to motivate this is applying updates to an entity in a game. So I ...
5
votes
1answer
174 views
How would you implement a functional programming language?
In functional paradigm, a function is a primary 'control structure'. For eg., the + operator is also treated as a function and you can pass them around like any other 'objects'. I was wondering that ...
6
votes
1answer
189 views
example uses scalaz.Lens's modf, modp and xmap
There are number of great tutorials and posts out there covering the more straightforward of Lens's methods, e.g. Cleaner way to update nested structures; can anyone provide example uses for these ...
22
votes
1answer
1k views
Are there any documented anti-patterns for functional programming? [closed]
Next month I'm going to work on a new R&D project that will adopt a functional programming language (I voted for Haskell, but right now F# got more consensus). Now, I've played with such ...
4
votes
4answers
236 views
How are all graphic and web libraries implemented in Haskell?
I only begin to learn Haskell. I've read that it is a pure functional language and everything in it is immutable. So things like input output, writing and reading databases cause mutability of the ...
2
votes
3answers
227 views
What are those functional functions called?
I'm looking for a functional way to implement this:
list = [a b c d e f]
foo(list, 3) = [[a d] [b e] [c f]]
A potential solution is:
foo(list,spacing) = zip(goo(list,spacing))
Where, for ...
5
votes
0answers
179 views
How do functional language compilers work? [duplicate]
So this is likely a silly question but I am just a little confused.
So I understand the Haskell compiler is itself written in Haskell. How does this work? What does it compile to? What is the OCaml ...
3
votes
4answers
179 views
Getting the head and tail of a custom List type Haskell
I have a custom list type as follow:
data NNList a = Sing a | Append ( NNList a) ( NNList a) deriving (Eq)
data CList a = Nil | NotNil ( NNList a) deriving (Eq)
and I'm trying to implement a ...
0
votes
2answers
156 views
Returning True for only 1 Function out of the list of 3
Since I'm pretty sure that using global variables in Haskell is frowned upon. I'm wondering is there anyway I can achieve the following?
-- list has elements that are odd
listHasOdd :: [Integer] ...
1
vote
2answers
176 views
Constant time Haskell List (Time Complexity? Haskell data types?) - Homework related
I'm currently taking a CS class in Haskell and I'm having some serious problem understanding some materials.
For one of my assignments, I'm given 2 data types and I'm asked to write a append function ...
4
votes
5answers
243 views
Checking to see if a list is ordered consecutively
Is there any library function in Haskell that'll allow me to check if a list is ordered consecutively? eg. [1,2,3,4] is valid, [1,2,3,10] is invalid.
Basically I can have a list that ranges anywhere ...
1
vote
1answer
68 views
Shortening/Making a function more concise
flushPoints :: [Card] -> Integer
flushPoints cs@(c1:hd) =
if flushPointsCalc True (suitCount hd) >
flushPointsCalc False (suitCount cs)
then flushPointsCalc True (suitCount ...
3
votes
3answers
104 views
Making a custom datatype ord-able
Can someone explain to me how do I make a custom data type ord-able?
** I'm not allowed to make modifications to Suit itself, eg. deriving (Eq, Ord)
data Suit = Clubs | Diamonds | Hearts | Spades ...
0
votes
1answer
171 views
Tree building function in Haskell (Homework)
data Tree a = Leaf | Node (Tree a) a (Tree a) deriving (Eq, Show)
unfoldTree:: (b -> Maybe (b, a, b)) -> b -> Tree a
unfoldTreef b =
case f b of
Nothing -> Leaf
Just (lt, ...
3
votes
2answers
155 views
HW: Unfolding a list in a specific way
In Programming in Haskell, Graham Hutton defines an unfold for lists as follows:
unfold :: (b -> Bool ) -> (b -> a) -> (b -> b) -> b -> [a]
unfold p h t x | p x = []
| otherwise ...
8
votes
2answers
157 views
haskell - flip fix / fix
>>>flip fix (0 :: Int) (\a b -> putStrLn "abc")
Output: "abc"
This is a simplified version of using flip fix.
I saw this way of using it in some youtube video which are probably from ...
28
votes
1answer
861 views
Maintaining complex state in Haskell
Suppose you're building a fairly large simulation in Haskell. There are many different types of entities whose attributes update as the simulation progresses. Let's say, for the sake of example, that ...
2
votes
2answers
98 views
How can I model a tree data structure with restrictions on where each kind of node can appear?
In Haskell, its straightforward to create a datatype for for a recursive tree, like what we have with XML documents:
data XML =
Text String -- Text of text node
| Elem String [XML] -- ...
0
votes
2answers
163 views
How to implement haskell data types in java?
If you have these Haskell data types
data Mlist a = Mlist [a]
data Mordering = MLT | MEQ | MGT | MIN deriving (Eq, Show)
Whats the best way to write this in java?
2
votes
3answers
96 views
Pattern Matching on Function
I have a function, dir_con :: (Int -> Dir)
I want to pattern match to find which specific constructor dir_con is. The data type is:
data Dir = Define Int
| Equals Int
| Data ...
4
votes
1answer
166 views
Does Haskell allow a let expression for multiple pattern matchings?
Let's say I have a function which does some computation, with several patterns; implemented in the form of pattern matching.
Most of these patterns do (along with other things different from one to ...
