Changes between Version 11 and Version 12 of WritingEfficientMetaModelica
- Timestamp:
- 2014-10-30T08:05:08Z (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WritingEfficientMetaModelica
v11 v12 86 86 }}} 87 87 88 Try/else is implemented as syntactic sugar. It is executed as if it was the above matchcontinue statement, but is shorter to write. 89 88 90 == Avoid matchcontinue, use tail recursion == 89 91 `matchcontinue` is slow. Whenever possible, use `match` instead. This avoids calling `setjmp`.