(44 lines)
1 '\" t2 .\" Copyright (c) 2025 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Path.by_line 3 2025-11-29 "Tomo man-pages"6 .SH NAME7 Path.by_line \- iterate by line8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Path.by_line\ :\ func(path:\ Path\ ->\ func(->Text?)?)13 .fi14 .SH DESCRIPTION15 Returns an iterator that can be used to iterate over a file one line at a time, or returns none if the file could not be opened.18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx23 l l l.24 Name Type Description25 path Path The path of the file.26 .TE27 .SH RETURN28 An iterator that can be used to get lines from a file one at a time or none if the file couldn't be read.30 .SH EXAMPLES31 .EX32 # Safely handle file not being readable:33 if lines := (./file.txt).by_line()34 for line in lines35 say(line.upper())36 else37 say("Couldn't read file!")39 # Assume the file is readable and error if that's not the case:40 for line in (/dev/stdin).by_line()!41 say(line.upper())42 .EE43 .SH SEE ALSO44 .BR Tomo-Path (3)