(43 lines)
1 '\" t2 .\" Copyright (c) 2025 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Bool.parse 3 2025-11-29 "Tomo man-pages"6 .SH NAME7 Bool.parse \- parse into boolean8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Bool.parse\ :\ func(text:\ Text,\ remainder:\ &Text?\ =\ none\ ->\ Bool?)13 .fi14 .SH DESCRIPTION15 Converts a text representation of a boolean value into a boolean. Acceptable boolean values are case-insensitive variations of `yes`/`no`, `y`/`n`, `true`/`false`, `on`/`off`.18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx lb23 l l l l.24 Name Type Description Default25 text Text The string containing the boolean value. -26 remainder &Text? If non-none, this argument will be set to the remainder of the text after the matching part. If none, parsing will only succeed if the entire text matches. none27 .TE28 .SH RETURN29 `yes` if the string matches a recognized truthy boolean value; otherwise return `no`.31 .SH EXAMPLES32 .EX33 assert Bool.parse("yes") == yes34 assert Bool.parse("no") == no35 assert Bool.parse("???") == none37 assert Bool.parse("yesJUNK") == none38 remainder : Text39 assert Bool.parse("yesJUNK", &remainder) == yes40 assert remainder == "JUNK"41 .EE42 .SH SEE ALSO43 .BR Tomo-Bool (3)