(38 lines)
1 '\" t2 .\" Copyright (c) 2026 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH List.shuffle 3 2026-03-08 "Tomo man-pages"6 .SH NAME7 List.shuffle \- shuffle a list in place8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI List.shuffle\ :\ func(list:\ @[T],\ random:\ func(min,max:Int64->Int64)?\ =\ none\ ->\ Void)13 .fi14 .SH DESCRIPTION15 Shuffles the elements of the list in place.18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx lb23 l l l l.24 Name Type Description Default25 list @[T] The mutable reference to the list to be shuffled. -26 random func(min,max:Int64->Int64)? If provided, this function will be used to get a random index in the list. Returned values must be between \fBmin\fR and \fBmax\fR (inclusive). (Used for deterministic pseudorandom number generation) none27 .TE28 .SH RETURN29 Nothing.31 .SH EXAMPLES32 .EX33 nums := &[10, 20, 30, 40]34 nums.shuffle()35 # E.g. [20, 40, 10, 30]36 .EE37 .SH SEE ALSO38 .BR Tomo-List (3)