#692 codygman Comment 692 In case you are curious... I was playing around with the data you are using in Haskell and came up with these two snippets: filter (fromJust . fmap (> 16) . age) people filter (\p -> fromJust $ (> 16) <$> age p) people url:Seven More Languages: Elm Day One 2015-02-11
In case you are curious... I was playing around with the data you are using in Haskell and came up with these two snippets:
filter (fromJust . fmap (> 16) . age) people filter (\p -> fromJust $ (> 16) <$> age p) people