I have an algorithm that returns ->Maybe ([(Int,Int)],(Int,Int))

I would like to call this from another method and perform an operation on the data.

However, the return value contains the keyword "Just" because it is a maybe. The second method takes ([(Int,Int)],(Int,Int)) and therefore will not except "Just ([(Int,Int)],(Int,Int))".

Is there a way I can trim the "Just" before applying the second method?

I don't fully understand the use of Just within Maybe - however, I have been told that the return type for the first Method must be Maybe.

Any help appreciated.

link|improve this question
Maybe is used if your unsure of the type of the return value. For instance is your method could return an error string. – Jonathan Fischoff Jul 30 '10 at 21:36
4  
@Jonathan Fischoff: Maybe is not used if you're unsure of the type. There is no way a method returnng Maybe ([(Int,Int)],(Int,Int)) could return an error string. Maybe is used when you don't know if you'll have a value to return or not, so you can either return Just the value or Nothing. – Chuck Jul 30 '10 at 21:44
@Jonathan Fischoff: Partly correct. You use Maybe when there may be no result (Nothing), for example getPosition :: List a -> Maybe Integer. You use Either to return either (no pun intended) a valid return value (Right) or an error (Left). Edit: @Chuck was faster. – delnan Jul 30 '10 at 21:45
@Chunk I think you took me too literally. I was referring to how Maybe's are used many Haskell libraries. – Jonathan Fischoff Jul 30 '10 at 23:55
feedback

2 Answers

There are several solutions to your problem, all based around pattern matching. (EDIT: major rewrite based on a comment). I'm assuming you have two algorithms (since you didn't name them, I will):

algorithm1 :: a -> Maybe b
algorithm2 :: b -> c
input :: a

1) Pattern matching is typically done from either a case statement (below) or a function.

let val = algorithm1 input
case val of
    Nothing -> defaultValue
    Just x  -> algorithm2 x

All other presented solutions use pattern matching, I'm just presenting standard functions that perform the pattern matching for you.

2) The prelude (and Data.Maybe) have some built-in functions to deal with Maybes. The maybe function is a great one, I suggest you use it. It's defined in standard libraries as:

maybe :: c -> (b -> c) -> Maybe b -> c
maybe n _ Nothing  = n
maybe _ f (Just x) = f x

You're code would look like:

maybe defaultValue algorithm2 (algorithm1 input)

3) Since Maybe is a functor you could use fmap. This makes more sense if you don't have a default value. The definition:

instance  Functor Maybe  where
    fmap _ Nothing       = Nothing
    fmap f (Just a)      = Just (f a)

So your code would look like:

fmap algorithm2 (algorithm1 input)

This output will be a Maybe value (Nothing if the result of algorithm1 is Nothing).

4) Finally, and strongly discouraged, is fromJust. Only use it if you are positive the first algorithm will return Just x (and not Nothing). Be careful! If you call fromJust val when val = Nothing then you get an exception, which is not appreciated in Haskell. Its definition:

fromJust          :: Maybe b -> b
fromJust Nothing  = error "Maybe.fromJust: Nothing" -- yuck
fromJust (Just x) = x

Leaving your code to look like:

algorithm2 (fromJust (algorithm1 input))
link|improve this answer
1  
I'd put it the other way round: pattern matching is the canonical way of dealing with a Maybe result, the others are just abbreviations for common ways to do that. (Since the OP probably doesn't know them, I'd state their definitions, too.) – Heinrich Apfelmus Aug 1 '10 at 8:40
Good point. In retrospect I think I started with fromJust merely because that was the answer already given and informally accepted by the asker. – Thomas M. DuBuisson Aug 1 '10 at 17:52
feedback

You're looking for fromJust. But only if you're certain your Maybe function is not going to return a Nothing!

link|improve this answer
Thank you, that'll do it. It always returns a value when called from this method because I'm just recycling a method written for something else. – KeepItFoolish Jul 30 '10 at 21:47
8  
fromJust is considered bad form in Haskell -- as are any partial functions like head. I would recommend either of the alternatives in TomMD's answer. – luqui Jul 30 '10 at 22:26
feedback

Your Answer

 
or
required, but never shown

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