mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 13:02:11 +03:00
12 lines
190 B
Haskell
12 lines
190 B
Haskell
|
module Data.IntMap.Strict.Extended
|
||
|
( module M,
|
||
|
catMaybes,
|
||
|
)
|
||
|
where
|
||
|
|
||
|
import Data.IntMap.Strict as M
|
||
|
import Prelude
|
||
|
|
||
|
catMaybes :: IntMap (Maybe v) -> IntMap v
|
||
|
catMaybes = M.mapMaybe id
|