f::pascal (public, deprecated)
f::pascal size
Defined in packages/acs-tcl/tcl/ad-functional-procs.tcl
Deprecated. Invoking this procedure generates a warning.
prints Pascal's triangle DEPRECATED: As of tcl8.5, Tcl has native support for 'lambda' provided by means of 'apply' per TIP 194. Tcllib provides a 'lambda' package with procs that make use of it.
- Parameters:
- size
See Also:- Partial Call Graph (max 5 caller/called nodes):
- Testcases:
- No testcase defined.
Source code: ns_log Notice "Deprecated proc f::pascal used:\n[ad_get_tcl_call_stack]" for {set n 0} {$n<=$size} {incr n} { puts [map [bind choose $n] [enum_from_to 0 $n]] }XQL Not present: Generic, PostgreSQL, Oracle