vote up 5 vote down star
1

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 :: (Ord a) => a -> a -> Bool
g a b = not $ f a b

I can make combinator like

n f = (\a -> \b -> not $ f a b)

But I don't know how.

*Main> let n f = (\a -> \b -> not $ f a b)
n :: (t -> t1 -> Bool) -> t -> t1 -> Bool
Main> :t n f
n f :: (Ord t) => t -> t -> Bool
*Main> let g = n f
g :: () -> () -> Bool

What am I doing wrong?

And bonus question how I can do this for function with more and lest parameters e.g.

t -> Bool
t -> t1 -> Bool
t -> t1 -> t2 -> Bool
t -> t1 -> t2 -> t3 -> Bool
flag

75% accept rate
not a dig on your question (please don't think that, I'm just seeing this frequently) but if we can tag a question with many tags, i.e., haskell in this case, why start the post with "Haskell: "? Should people that can edit remove the tag in the title? – esabine Jan 5 at 19:26
@esabine: So that people can look at the question and tell what it's about, without reading the tiny tags. Question titles should ideally describe the question as specifically as possible. – ShreevatsaR Jan 5 at 21:30
@ShreevatsaR: I agree with you fully. I hate when I must read this tiny tags to determine that some question is about .NET – Hynek -Pichi- Vychodil Jan 6 at 7:49

4 Answers

vote up 6 vote down check

Unless you want to go hacking around with typeclasses, which is better left for thought experiments and proof of concept, you just don't generalize to multiple arguments. Don't try.

As for your main question, this is most elegantly solved with Conal Elliott's "semantic editor combinators". A semantic editor combinator is a function with a type like:

(a -> b) -> F(a) -> F(b)

Where F(x) is some expression involving x. There are also "contravariant" editors which take a (b -> a) instead. Intuitively, an editor selects a part of some larger value to operate on. The one you need is called "result":

result = (.)

Look at the type of the expression you're trying to operate on:

a -> a -> Bool

The "result" (codomain) of this type is a -> Bool, and the result of that type is Bool, and that's what you're trying to apply "not" to. So to apply not to the result of the result of a function f, you write:

(result.result) not f

This beautifully generalizes. Here are a few more editors:

argument = flip (.)
first f (a,b) = (f a, b)
second f (a,b) = (a, f b)

left f (Left x) = Left f x
left f (Right x) = Right x
...

So if you have a value x of type:

Int -> Either (String -> (Int, Bool)) [Int]

And you want to apply "not" to the Bool, you just spell out the path to get there:

(result.left.result.second) not x

Oh, and if you've gotten to Functors yet, you'll notice that "fmap" is an editor. In fact, the above can be spelled:

(fmap.left.fmap.fmap) not x

But I think it's clearer to use the expanded names.

Enjoy.

link|flag
Haskell is powerful, so much ;-) – Hynek -Pichi- Vychodil Jan 6 at 7:54
Left f x should be Left (f x). – Tom Lokhorst Jan 9 at 22:58
I like this explanation of SECs. For more, see the [blog post](conal.net/blog/posts/…). Small correction: I call not an "editor" and result, left, second etc the "editor combinators", because they transform editors an they compose. – Conal Jul 18 at 16:45
vote up 4 vote down

Your n combinator can be written:

n = (.) (not .)

As for your bonus question, I'm not sure about doing this with arbitrary arity in a single higher-order function. What would be the type of such a function? It seems that you would need a type system with dependent types.

Dependent types can be simulated to some degree in Haskell. Have a look at the HList library for more info.

The typical way around would be to create several of these:

lift2 = (.).(.)
lift3 = (.).(.).(.)
lift4 = (.).(.).(.).(.)
lift5 = (.).(.).(.).(.).(.)

etc.

link|flag
vote up 7 vote down

Re: What am I doing wrong?:

I think your combinator is fine, but when you let-bind it at the top level, one of Haskell's annoying 'default rules' comes into play and the binding isn't generalized:

Prelude> :ty (n f)
(n f) :: (Ord t) => t -> t -> Bool
Prelude> let g = n f
Prelude> :ty g
g :: () -> () -> Bool

I think you may be getting clobbered by the 'monomorphism restriction' as it applies to type classes. In any case, if you get out of the top-level loop and put things into a separate file with an explicit type signature, it all works fine:

module X where

n f = (\a -> \b -> not $ f a b)
f a b = a > b

g :: Ord a => a -> a -> Bool
g = n f

Bonus question: to do this with more and more type parameters, you can try playing scurvy tricks with the type-class system. Two papers to consult are Hughes and Claessen's paper on QuickCheck and Ralf Hinze's paper Generics for the Masses.

link|flag
It works in ghci too. let g::(Ord a) => (a->a->Bool); g = n f – Hynek -Pichi- Vychodil Jan 6 at 7:54
Ah, nice. I didn't know you could put that semicolon into ghci. – Norman Ramsey Jan 7 at 0:45
vote up 5 vote down

Actually, doing arbitrary arity with type classes turns out to be incredibly easy:

module Pred where

class Predicate a where
  complement :: a -> a

instance Predicate Bool where
  complement = not

instance (Predicate b) => Predicate (a -> b) where
  complement f = \a -> complement (f a)  
  -- if you want to be mysterious, then
  -- complement = (complement .)
  -- also works

ge :: Ord a => a -> a -> Bool
ge = complement (<)

Thanks for pointing out this cool problem. I love Haskell.

link|flag
what a delightful and useful idea to have a seemingly free in (Predicate b) => Predicate (a -> b)... – namin Jan 8 at 10:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.