You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Proposal to add inline functions using the inline keyword:
export inline fn test_inline(a:i32):u32{return a asu32}
This would most likely be implement by adding another field to the Compiler struct which contains the instructions for each registered inline function. This is useful for things like std/math, and other high performance, or small tasks where a function call is not desired.
The text was updated successfully, but these errors were encountered:
Proposal to add inline functions using the
inline
keyword:This would most likely be implement by adding another field to the
Compiler
struct which contains the instructions for each registered inline function. This is useful for things likestd/math
, and other high performance, or small tasks where a function call is not desired.The text was updated successfully, but these errors were encountered: