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 890758f commit aff4d83Copy full SHA for aff4d83
S02-bits.pod
@@ -1734,10 +1734,14 @@ value each of its elements stores:
1734
Each successive C<of> makes the type on its right a parameter of the
1735
type on its left. Parametric types are named using square brackets, so:
1736
1737
- my Hash of Array of Recipe %book;
+ my Hash[Array[Recipe]] %book;
1738
1739
actually means:
1740
1741
+ my Hash of Array of Recipe %book;
1742
+
1743
+which is:
1744
1745
my Hash:of(Array:of(Recipe)) %book;
1746
1747
Because the actual variable can be hard to find when complex types are
0 commit comments