annotate general/funutils/ifx.m @ 26:8f4a21082c45

It was wrong. Now it is right.
author samer
date Sat, 19 Jan 2013 13:09:31 +0000
parents e44f49929e56
children
rev   line source
samer@4 1 % ifx - 'if' expression
samer@4 2 %
samer@4 3 % ifx :: bool, A, A -> A.
samer@4 4 function v=ifx(f,a,b), if f, v=a; else v=b; end