(37 lines)
1 '\" t2 .\" Copyright (c) 2025 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Path.relative_to 3 2025-12-07 "Tomo man-pages"6 .SH NAME7 Path.relative_to \- apply a relative path to another8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Path.relative_to\ :\ func(path:\ Path,\ relative_to\ =\ (./)\ ->\ Path)13 .fi14 .SH DESCRIPTION15 Returns the path relative to a given base path. By default, the base path is the current directory.18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx lb23 l l l l.24 Name Type Description Default25 path Path The path to convert. -26 relative_to The base path for the relative path. (./)27 .TE28 .SH RETURN29 A relative path from the reference point to the given path.31 .SH EXAMPLES32 .EX33 assert (./path/to/file.txt).relative_to((./path)) == (./to/file.txt)34 assert (/tmp/foo).relative_to((/tmp)) == (./foo)35 .EE36 .SH SEE ALSO37 .BR Tomo-Path (3)