path
host module
Pure path-string manipulation — no IO.
use path — pure path-string manipulation, no IO.
| function | signature | notes |
|---|---|---|
| join | (a, b) -> string | |
| parent | (p) -> string | empty at root |
| filename | (p) -> string | |
| extension | (p) -> string | no dot |
| normalize | (p) -> string | lexical ./.. |
| absolutize | (p) -> Result[string, string] | against cwd, then normalize |