Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a list of data types and I want to find the one that matches the first value, if it exists. If it does not exist, I want to return a default value.

data MyType = MyType String Int
findOrMake :: [MyType] -> String -> Int
findOrMake list x = do  i <- -- find index
                        -- if i is a value, return the x[i]
                        -- if i is not a value, return (MyType x 0)

I have an intuition that I should use fmap and find, but I have never used either before.

share|improve this question

2 Answers

up vote 4 down vote accepted

How about a simple recursive solution?

data MyType = MyType String Int

findOrMake :: [MyType] -> String -> Int
findOrMake [] s = 42
findOrMake ((MyType mstr mint):ms) s = if mstr == s then mint else findOrMake ms s
share|improve this answer

To provide a default when the item is not found, you can use fromMaybe:

fromMaybe :: a -> Maybe a -> a

Combined with find, it should look something like this:

fromMaybe defaultValue $ find predicate list
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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