blob: e2479595754d5c211a8bd9805f768ee1adbaaef7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
'\" t
.\" Copyright (c) 2025 Bruce Hill
.\" All rights reserved.
.\"
.TH Path.resolved 3 2025-05-17 "Tomo man-pages"
.SH NAME
Path.resolved \- resolve a path
.SH LIBRARY
Tomo Standard Library
.SH SYNOPSIS
.nf
.BI Path.resolved\ :\ func(path:\ Path,\ relative_to\ =\ (./)\ ->\ Path)
.fi
.SH DESCRIPTION
Resolves the absolute path of the given path relative to a base path. By default, the base path is the current directory.
.SH ARGUMENTS
.TS
allbox;
lb lb lbx lb
l l l l.
Name Type Description Default
path Path The path to resolve. -
relative_to The base path for resolution. (./)
.TE
.SH RETURN
The resolved absolute path.
.SH EXAMPLES
.EX
>> (~/foo).resolved()
= (/home/user/foo)
>> (./path/to/file.txt).resolved(relative_to=(/foo))
= (/foo/path/to/file.txt)
.EE
|