-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/
-- | Handful of simple utility functions for the path library.
--
-- Handful of simple utility functiosn for the path library.
@package path-utils
@version 0.1.1.0
-- | Miscellaneous utility functions for the path library.
module Path.Utils
-- | Apply `(/)` to every relative path inside a functor.
($>) :: Functor f => Path b Dir -> f (Path Rel t) -> f (Path b t)
-- | Change directory from src to dst.
changeDir :: MonadThrow m => Path b Dir -> Path b' Dir -> Path b t -> m (Path b' t)
-- | Split a relative path into text sections.
splitPath :: Path Rel t -> [Text]
-- | Convert a Path to Text.
toFilePathText :: Path b t -> Text