bpath-0.1.0: src/Path.hs
module Path
( -- * The basic path type
Path,
PathType (..),
-- * Converting between 'ByteString' and 'Path'
parseAbs,
parseRel,
fromAbs,
fromRel,
-- * Operations on paths
(</>),
stripPrefix,
isPrefixOf,
parent,
filename,
-- * Template Haskell stuff
mkAbs,
mkRel,
absp,
relp,
)
where
import Path.Internal