Inline macro

TLDR: for short functions where it will be faster if the compiler to “copy-paste” the definition of the function into it’s caller instead of making a function call. That said, the compiler generally does a pretty good job of doing this on its own, so I wouldn’t worry about it much if you are relatively new to Julia. It is generally a fairly minor factor.

2 Likes