Author: larry
Date: Wed Apr 4 17:43:14 2007
New Revision: 14369
Modified:
doc/trunk/design/syn/S09.pod
Log:
Reorganization suggested by Jonathan Lang++
Modified: doc/trunk/design/syn/S09.pod
==============================================================================
--- doc/trunk/design/syn/S09.pod (original)
+++ doc/trunk/design/syn/S09.pod Wed Apr 4 17:43:14 2007
@@ -12,9 +12,9 @@
Maintainer: Larry Wall <[EMAIL PROTECTED]>
Date: 13 Sep 2004
- Last Modified: 28 Mar 2007
+ Last Modified: 4 Apr 2007
Number: 9
- Version: 19
+ Version: 20
=head1 Overview
@@ -221,13 +221,6 @@
my @library[1_000_000 --> Book];
-Arrays may also be defined with a mixture of fixed and autoextending
-dimensions (see below). For example, there are always 12 months in
-a year and 24 hours in a day, but the number of days in the month
-can vary:
-
- my @calendar[12;*;24]; # day-of-month dimension unlimited/ragged
-
=head1 Compact arrays
@@ -302,6 +295,12 @@
my @calendar[12;31;24]; # Valid indices are 0..11 ; 0..30 ; 0..23
+Arrays may also be defined with a mixture of fixed and autoextending
+dimensions. For example, there are always 12 months in a year and
+24 hours in a day, but the number of days in the month can vary:
+
+ my @calendar[12;*;24]; # day-of-month dimension unlimited/ragged
+
You can pass a multislice for the shape as well:
@@shape = (4;2);