(35 lines)
1 '\" t2 .\" Copyright (c) 2025 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Path.is_symlink 3 2025-11-29 "Tomo man-pages"6 .SH NAME7 Path.is_symlink \- check if a path is a symbolic link8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Path.is_symlink\ :\ func(path:\ Path\ ->\ Bool)13 .fi14 .SH DESCRIPTION15 Checks if the path represents a symbolic link.18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx23 l l l.24 Name Type Description25 path Path The path to check.26 .TE27 .SH RETURN28 `True` if the path is a symbolic link, `False` otherwise.30 .SH EXAMPLES31 .EX32 assert (./link).is_symlink() == yes33 .EE34 .SH SEE ALSO35 .BR Tomo-Path (3)