Function isAbsolutePosix [src]

Prototype

pub fn isAbsolutePosix(path: []const u8) bool

Parameters

path: []const u8

Example

test isAbsolutePosix { try testIsAbsolutePosix("", false); try testIsAbsolutePosix("/home/foo", true); try testIsAbsolutePosix("/home/foo/..", true); try testIsAbsolutePosix("bar/", false); try testIsAbsolutePosix("./baz", false); }

Source

pub fn isAbsolutePosix(path: []const u8) bool { return path.len > 0 and path[0] == sep_posix; }