We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Declaration syntax:
<left> := <right>
Mutable assignment syntax:
<left> ?= <right>
Where ?= can be =, +=, *= etc.
?=
=
+=
*=
The following rules are used:
:=
The rules are designed for:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Declaration syntax:
Mutable assignment syntax:
Where
?=
can be=
,+=
,*=
etc.The following rules are used:
:=
does a shallow clone of right value, if it is a reference=
does a shallow clone of right value:=
ignores the type of the assigned item?=
checks the type of assigned item?=
does a shallow clone (copy-on-write) of left value before assigning, if it is a referenceThe rules are designed for:
The text was updated successfully, but these errors were encountered: