(35 lines)
1 '\" t2 .\" Copyright (c) 2025 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH List.unique 3 2025-11-29 "Tomo man-pages"6 .SH NAME7 List.unique \- get the unique items in a list8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI List.unique\ :\ func(list:\ [T]\ ->\ {T})13 .fi14 .SH DESCRIPTION15 Returns a set of the unique elements of the list.18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx23 l l l.24 Name Type Description25 list [T] The list to process.26 .TE27 .SH RETURN28 A set of the unique elements from the list.30 .SH EXAMPLES31 .EX32 assert [10, 20, 10, 10, 30].unique() == {10, 20, 30}33 .EE34 .SH SEE ALSO35 .BR Tomo-List (3)