0
votes
2answers
129 views

Composing Haskell filters

I am converting the zxcvbn password strength algorithm to Haskell. I have two functions that check for all characters being ASCII and that a brute force attack is possible: filterAscii :: [String] ...
33
votes
4answers
893 views

Concrete example showing that monads are not closed under composition (with proof)?

It is well-known that applicative functors are closed under composition but monads are not. However, I have been having trouble finding a concrete counterexample showing that monads do not always ...
0
votes
2answers
155 views

Haskell use of map and composed function

Ok, I can't figure this one out even though I have an idea what it's doing... let t = ["APE", "MONKEY", "DONKEY"] Now consider three cases: map (length.group) t (map length.group) t map (map ...
3
votes
1answer
117 views

A generic composition with ambiguity detection

I want to define a generic composition which works both for a -> b and for a -> Maybe b: class Comp m where (...) :: m a b -> m b c -> m a c instance Comp (->) where (...) = ...
0
votes
2answers
147 views

trouble with state monad composition

I was trying out the example given at http://www.haskell.org/haskellwiki/State_Monad#Complete_and_Concrete_Example_1 How this makes the solution composible is beyond my understanding. Here is what I ...
12
votes
4answers
572 views

When is a composition of catamorphisms a catamorphism?

From page 3 of http://research.microsoft.com/en-us/um/people/emeijer/Papers/meijer94more.pdf: it is not true in general that catamorphisms are closed under composition Under what conditions do ...
12
votes
2answers
405 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 ...
1
vote
4answers
201 views

Avoid temporary variables by using name shadowing

I create a lot of temporary variables in Haskell: main = do let nums'' = [1..10] let nums' = a . bunch . of_ . functions $ nums'' let nums = another . bunch . of_ . functions $ nums' ...
18
votes
1answer
235 views

Expressive and composable error types

I am struggling with the best way to report errors in a set of functions that should compose nicely, in a library I'm working on. Concretely, I have functions that look like: foo, bar, baz :: a ...
5
votes
2answers
309 views

Abstracting monad composition as a transformer

Sorry if the question seems a bit trivial... it is not for me. I have happily composed the following monad: type SB i a = ReaderT ( AlgRO i ) (State ( AlgState i ) ) a which is, well, a well ...
6
votes
2answers
370 views

How to write without Do notation

I was playing around with composable failures and managed to write a function with the signature getPerson :: IO (Maybe Person) where a Person is: data Person = Person String Int deriving Show ...
6
votes
3answers
246 views

Haskell help with . and $

As an example, take the following type Row a = [a] type Table a = [Row a] mapTable :: (a -> b) -> Table a -> Table b mapTable = map . map notTable :: Table Bool -> Table Bool notTable = ...
9
votes
7answers
1k views

Does C# support function composition?

In the latest version of C#, can I do something like this? I feel like linq is the closest but that's chaining, not function composition, right?
3
votes
6answers
251 views

Composing two error-raising functions in Haskell

The problem I have been given says this: In a similar way to mapMaybe, define the function: composeMaybe :: (a->Maybe b) -> (b -> Maybe c) -> (a-> Maybe c) which composes two ...
2
votes
3answers
963 views

Filter/Map composition problem Haskell

I've been given this question in a tutorial, and I really don't know how to go about it. How must g and h be defined in terms of p and f in order to ensure that filter p . map f = map g . filter ...
10
votes
6answers
3k views

Haskell function composition

I am reading this tutorial on Haskell. They define function composition as the following: (.) :: (b->c) -> (a->b) -> (a->c) f . g = \ x -> f (g ...
33
votes
7answers
4k views

Haskell composition (.) vs F#'s pipe forward operator (|>)

In F#, use of the the pipe-forward operator (|>) is pretty common. However, in Haskell I've only ever seen function composition (.) being used. I understand that they are related, but is there a ...
20
votes
4answers
2k views

Haskell: How to compose `not` with a function of arbitrary arity?

When I have some function of type like f :: (Ord a) => a -> a -> Bool f a b = a > b I should like make function which wrap this function with not. e.g. make function like this g :: ...