(40 lines)
1 '\" t2 .\" Copyright (c) 2026 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Int.onward 3 2026-03-08 "Tomo man-pages"6 .SH NAME7 Int.onward \- iterate from a number onward8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Int.onward\ :\ func(first:\ Int,\ step:\ Int\ =\ 1\ ->\ Text)13 .fi14 .SH DESCRIPTION15 Return an iterator that counts infinitely from the starting integer (with an optional step size).18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx lb23 l l l l.24 Name Type Description Default25 first Int The starting integer. -26 step Int The increment step size. 127 .TE28 .SH RETURN29 An iterator function that counts onward from the starting integer.31 .SH EXAMPLES32 .EX33 nums : &[Int] = &[]34 for i in 5.onward()35 nums.insert(i)36 stop if i == 1037 assert nums[] == [5, 6, 7, 8, 9, 10]38 .EE39 .SH SEE ALSO40 .BR Tomo-Int (3)