We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15957e1 commit 8d3c195Copy full SHA for 8d3c195
doc/Language/containers.pod
@@ -123,6 +123,17 @@ changes the contents of the other.
123
You've seen this situation before: it is exactly what happened with the
124
signature parameter marked as C<is rw>.
125
126
+Sigilless variabes also bind by default and so do parameters with the trait C<is raw>.
127
+
128
+ my $a = 42;
129
+ my \b = $a;
130
+ b++;
131
+ say $a; # 43
132
133
+ sub f($c is raw) { $c++ }
134
+ f($a);
135
+ say $a; # 44
136
137
=head2 Scalar containers and listy things
138
139
There are a number of positional container types with slightly different
0 commit comments