3
votes
4answers
192 views

Is there a name for this kind of lifting a function?

I wrote a Scala function: def liftOrIdentity[T](f: (T, T) => T) = (a: Option[T], b: Option[T]) => (a, b) match { case (Some(a), None) => Some(a) case (None, Some(b)) => ...
0
votes
2answers
128 views

Unifying Types in Haskell

I'm kind of stuck with an assignement concerning my exams. I want to find out the types of those two functions by applying the unifying algorithm by hand: map map (\x -> x >>= (\y -> y)) ...
4
votes
1answer
181 views

Functional non recursive approach to looping in Haskell

I use Haskell for my programming during leisure these days. Being a programmer in imperative languages for over 8 years, it is tough to wrap my head around some functional constructs (especially the ...
9
votes
0answers
289 views

Are there problems that can't be solved efficiently without arrays? [duplicate]

For someone used to imperative programming, it's sometimes hard to write efficient code in functional languages without using arrays/vectors. However, it seems there's always a smart way of doing it. ...
6
votes
3answers
145 views

Evaluation of nullary functions in Haskell

Suppose you have a nullary function in haskell, which is used several times in the code. Is it always evaluated only once? I already tested the following code: sayHello :: Int sayHello = ...
15
votes
2answers
403 views

How to compare two functions for equivalence, as in (λx.2*x) == (λx.x+x)?

Is there a way to compare two functions for equality? For example, (λx.2*x) == (λx.x+x) should return true, because those are obviously equivalent.
13
votes
2answers
315 views

Haskell Pattern Matching Fails on Negative Number

The Haskell compiler throws an error on the following function: balancedMax :: Int -> Int -> Int balancedMax -1 _ = -1 balancedMax _ -1 = -1 balancedMax a b = max a b Flipping the sign solves ...
1
vote
3answers
110 views

String concatenation with haskell state monad

I need to wrap my head around the state monad in haskell and I have some problems with that. The task is to implement a function countConcat which concatenates string with the state monad and a ...
2
votes
2answers
110 views

Stackoverflow error in Reversi game written in Haskell

this code is causing a stack overflow error - can any of you people see anything Ive missed that could be causing it? Ive gone through all the functions and set them to just return arbitrary values ...
2
votes
2answers
104 views

Delete tree leaf with specific Int in Haskell

I have the defined Type: data Tree = Node Tree Tree | Leaf Int | NIL. I want create a method delete :: Tree -> Int -> Tree which removes all Leaf's with the specific Int given in the second parameter. ...
6
votes
6answers
138 views

Haskell. Keeping track of indices in order to generate a new list

I decided to learn Haskell and also learn to think in a more functional way, so I'm trying to solve very simple exercises trying to use a good approach in this paradigm. I'm trying to achieve this ...
0
votes
1answer
126 views

List syntax with custom list type

Given a custom type of lists such as data List' a = EmptyList | NonEmptyList a (List' a) deriving Show and a function to tell if such a list is non-empty null' xs = case xs of ...
1
vote
1answer
90 views

Pattern Matching : function to return number of additions and constants

I am learning pattern matching in Haskell and I found some exercises which are said to be good for pattern matching. Is there anyone who can give a little information about how to write a function ...
2
votes
1answer
98 views

Haskell - Happy, math expressions and variables parser

I'm working on a Happy math expressions and variables parser. The problem is that I don't know how to save the value for a variable and use it later. Any ideas? This is how I recognize expressions ...
3
votes
2answers
145 views

Haskell - simulate global variable(function)

I'm working on a project in Haskell and I need a global variable. Currently I'm doing this: funcs :: Map.Map String Double funcs = Map.empty eliminate :: Maybe a -> a eliminate (Just a) = a ...
3
votes
2answers
168 views

CPU emulation in haskell, functional data structures, and maybe zippers?

Well, not exactly. I have more of a functional data structures question. Say I want to model the execution of a CPU. I have some set of instructions that mutate the CPU state (say it's a stack based ...
13
votes
5answers
768 views

What is a solid example of something that can be done with list comprehensions that is tricky with high order functions?

I've heard from many Pythonists that they prefer list comprehensions because they can do everything you can do using high order functions such as filter and reduce, and more. So this question address ...
4
votes
2answers
120 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
89 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
135 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
111 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
177 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
158 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
135 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
136 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 ...
43
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
125 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
133 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
285 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
234 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
150 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
165 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
298 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
103 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
131 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
70 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
102 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
191 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
280 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). ...
154
votes
3answers
12k 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
107 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?
22
votes
4answers
559 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
93 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
216 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
212 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
185 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
221 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 ...

1 2 3 4 5 16