(36 lines)
1 '\" t2 .\" Copyright (c) 2026 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Text.matches_glob 3 2026-03-14 "Tomo man-pages"6 .SH NAME7 Text.matches_glob \- check if text matches a glob8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Text.matches_glob\ :\ func(path:\ Text,\ glob:\ Text\ ->\ Bool)13 .fi14 .SH DESCRIPTION15 Return whether or not the text matches the given glob.18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx23 l l l.24 Name Type Description25 path Text The text to check.26 glob Text The glob pattern to check.27 .TE28 .SH RETURN29 Whether or not the text matches the given glob.31 .SH EXAMPLES32 .EX33 assert "hello world".matches_glob("h* *d")34 .EE35 .SH SEE ALSO36 .BR Tomo-Text (3)