(38 lines)
1 '\" t2 .\" Copyright (c) 2025 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH List.slice 3 2025-11-29 "Tomo man-pages"6 .SH NAME7 List.slice \- get a slice of a list8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI List.slice\ :\ func(list:\ [T],\ from:\ Int,\ to:\ Int\ ->\ [T])13 .fi14 .SH DESCRIPTION15 Returns a slice of the list spanning the given indices (inclusive).18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx23 l l l.24 Name Type Description25 list [T] The original list.26 from Int The first index to include.27 to Int The last index to include.28 .TE29 .SH RETURN30 A new list spanning the given indices. Note: negative indices are counted from the back of the list, so `-1` refers to the last element, `-2` the second-to-last, and so on.32 .SH EXAMPLES33 .EX34 assert [10, 20, 30, 40, 50].slice(2, 4) == [20, 30, 40]35 assert [10, 20, 30, 40, 50].slice(-3, -2) == [30, 40]36 .EE37 .SH SEE ALSO38 .BR Tomo-List (3)