gleam/path
Types
pub type Path {
Absolute(segments: List(String))
Relative(segments: List(String))
}
Constructors
-
Absolute(segments: List(String)) -
Relative(segments: List(String))
pub type PathFilter {
Up
Skip
Include
}
Constructors
-
Up -
Skip -
Include
Functions
pub fn from_string(base: String) -> Path