TOC PREV NEXT INDEX

 


Performance Warnings


TclPro Checker generates a warning when a performance-optimization opportunity is detected. For example: if your code included:


set x [expr $x * $y]

it would generate a performance warning because performance is improved with curly braces, as shown below:


set x [expr {$x * $y}]



http://www.ajubasolutions.com
Voice: (650) 210-0100
Fax: (650) 210-0101
support@ajubasolutions.com
TOC PREV NEXT INDEX