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
The in T type optimises type T for passing as an input parameter.
The out T type optimises type T for passing as an output parameter.
The inout T type (or io T optimises type T for passing as an input/output parameter.
This relies on binding binding rules, and selecting passing by copy or by reference depending on what is more efficient.
The text was updated successfully, but these errors were encountered:
The
in T
type optimises typeT
for passing as an input parameter.The
out T
type optimises typeT
for passing as an output parameter.The
inout T
type (orio T
optimises typeT
for passing as an input/output parameter.This relies on binding binding rules, and selecting passing by copy or by reference depending on what is more efficient.
The text was updated successfully, but these errors were encountered: