Skip to content

Questions and answers

Daniel Wirtz edited this page May 9, 2018 · 24 revisions

A collection of answers to questions that appeared over time.

What's the difference between an if/else and a select?

Semantically, a select differs from an if/else in that in a select, both alternatives are always executed, picking one of them depending on the condition. So if one side has side effects, it is going to happen, even if the condition ultimately picks the other side. Performance-wise, a select (conditional move, works similar to a switch) is expected to be faster than an if/else where the condition is random (that is, branch prediction is not going to perform well) and the operands are cheap. An if/else where branch prediction is doing well, for example where checking a configuration value that is always the same, is expected to be fastest.

Why does compilation error with Cannot find name 'allocate_memory'?

At the time of this writing, some operations like the new keyword or using certain parts of the standard library require a memory manager to present. There are multiple memory managers to pick from and none of them is included by default. To use the arena allocator for example, simply add an import "allocator/arena"; statement to your entry file.

 

Clone this wiki locally