packages feed

bookhound-0.1.0.0: src/Utils/Applicative.hs

module Utils.Applicative where


extract :: Applicative m => m a1 -> m a2 -> m b -> m b
extract start end inner = start *> inner <* end