kingbiz...@gmail.com schrieb:
I come here humbly to ask for a new implementation, the IIF ?:, the IIF is a shortcut that make the coding a little faster, it works by returning a true or a false part of a condition, a more detailed information can be found there: http://en.wikipedia.org/wiki/%3F:

*PHP and C++ implementation:* Value *=* condition *?* value if true *:* value if false;
*Pascal implementation:* Value := IfThen(Condition, TruePart, FalsePart);

The standard Pascal implementation of the C ternary expression is a
  const Name: array[boolean] of <type> = (FalseFart, TruePart);
and
  Value := Name[Condition];

DoDi

_______________________________________________
fpc-devel maillist  -  fpc-devel@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-devel

Reply via email to