We don't expect "Path Abs" everywhere anymore. The functions have been made to be more generic. A user can still pass absolute paths, so we don't lose any safety. However, some function implementations may be more tricky.
9 lines
116 B
Haskell
9 lines
116 B
Haskell
module HPath.IO where
|
|
|
|
|
|
import HPath
|
|
|
|
canonicalizePath :: Path b -> IO (Path Abs)
|
|
|
|
toAbs :: Path b -> IO (Path Abs)
|