What are `$$forInline` methods? Are they the ones ...
# compiler
y
What are
$$forInline
methods? Are they the ones looked at and used by the inliner? Are the non-
$$forInline
methods thus rarely used?
i
Please check out this document. TLDR (if I remember it right) this is the function that we generate for "suspend inline" functions that will be inlined. They have state machine logic applied and everything else required. To allow to call such functions from Java or reflection we keep original function untouched.
thank you color 1