Changes between Version 11 and Version 12 of WritingEfficientMetaModelica


Ignore:
Timestamp:
2014-10-30T08:05:08Z (10 years ago)
Author:
Martin Sjölund
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WritingEfficientMetaModelica

    v11 v12  
    8686}}}
    8787
     88Try/else is implemented as syntactic sugar. It is executed as if it was the above matchcontinue statement, but is shorter to write.
     89
    8890== Avoid matchcontinue, use tail recursion ==
    8991`matchcontinue` is slow. Whenever possible, use `match` instead. This avoids calling `setjmp`.