f::cycle (public)
f::cycle n xs
Defined in packages/acs-tcl/tcl/ad-functional-procs.tcl
returns concatenated list of n copies of xs
- Parameters:
- n
xs
- Partial Call Graph (max 5 caller/called nodes):
- Testcases:
- No testcase defined.
Source code: set result {} for {set i 0} {$i<$n} {incr i} { lappend result {*}$xs } return $resultXQL Not present: Generic, PostgreSQL, Oracle