Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
Documentation
parseRoute :: OptPath -> Maybe OptRoute Source #
Split a path string into its components, if it's a valid path syntactically.
parseRoute' :: Char -> Char -> OptPath -> Maybe OptRoute Source #
Like parseRoute
, but allows to choose the escape character (e.g. '\'
)
and the path separator character (e.g.
)..