bm_repeat_string (public)
bm_repeat_string string iteration_number
Defined in packages/bookmarks/tcl/bookmarks-procs.tcl
- Parameters:
- string (required)
- iteration_number (required)
- Partial Call Graph (max 5 caller/called nodes):
- Testcases:
- No testcase defined.
Source code: if { $iteration_number <= 0} { return "" } set return_string "" for { set i 0 } { $i < $iteration_number } { incr i } { append return_string $string } return $return_stringGeneric XQL file: packages/bookmarks/tcl/bookmarks-procs.xql
PostgreSQL XQL file: packages/bookmarks/tcl/bookmarks-procs-postgresql.xql
Oracle XQL file: packages/bookmarks/tcl/bookmarks-procs-oracle.xql