(40 lines)
1 '\" t2 .\" Copyright (c) 2025 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Text.starts_with 3 2025-11-29 "Tomo man-pages"6 .SH NAME7 Text.starts_with \- check prefix8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Text.starts_with\ :\ func(text:\ Text,\ prefix:\ Text,\ remainder:\ &Text?\ =\ none\ ->\ Bool)13 .fi14 .SH DESCRIPTION15 Checks if the `Text` starts with a literal prefix text.18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx lb23 l l l l.24 Name Type Description Default25 text Text The text to be searched. -26 prefix Text The literal prefix text to check for. -27 remainder &Text? If non-none, this value will be set to the rest of the text after the prefix. If the prefix is not found, this value will be set to the original text. none28 .TE29 .SH RETURN30 `yes` if the text has the given prefix, `no` otherwise.32 .SH EXAMPLES33 .EX34 assert "hello world".starts_with("hello") == yes35 remainder : Text36 assert "hello world".starts_with("hello", &remainder) == yes37 assert remainder == " world"38 .EE39 .SH SEE ALSO40 .BR Tomo-Text (3)