Does `val`, `private` and `internal` has any actua...
# compiler
t
Does
val
,
private
and
internal
has any actual optimization effects in the compiled codes?
e
a little:
private val/var
may be direct field access instead of getter/setter functions
thank you color 1