]> gitweb.michael.orlitzky.com - dead/lwn-epub.git/blob - src/Misc.hs
Merge branch 'master' of michael.orlitzky.com:/var/www/orlitzky.com/michael/public...
[dead/lwn-epub.git] / src / Misc.hs
1 module Misc
2 where
3
4 import Data.List (isInfixOf)
5
6 -- | Specializes Data.List.isInfixOf.
7 contains :: String -> String -> Bool
8 contains = isInfixOf