Re: Call to * Might be short circuited ?
- Posted by irv mullins <irvm at ellijay.com> Aug 02, 2004
- 497 views
don cole wrote: > > What does this mean? >
if this_func() = 1 and that_func() = 2 then
In the event that this_func does happen to return 1, then that_func will never be called. If you had some assignments or code inside that_func which you were expecting to be run, it won't. The warning means that you shouldn't count on it happening, as that_func may, under some circumstances, not be called. Irv