Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Spring before Summer usually :)
  • Loading branch information
perlpilot committed Nov 16, 2010
1 parent ad8e423 commit c0b0845
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions S09-data.pod
Expand Up @@ -381,6 +381,7 @@ the semicolon level.

The shape in the declaration merely specifies how the array will
autovivify on first use, but ends up as an attribute of the actual
or
container object thereby. On the other hand, the shape may be also
supplied entirely by an explicit constructor at run-time:

Expand Down Expand Up @@ -501,13 +502,13 @@ based) indices of that dimension. So, given the preceding definitions:
and:

maps to
@seasons{'Summer'} ------> @seasons[0]
@seasons{'Spring'} ------> @seasons[1]
@seasons{'Spring'} ------> @seasons[0]
@seasons{'Summer'} ------> @seasons[1]
@seasons{'Autumn'} ------> @seasons[2]
@seasons{'Winter'} ------> @seasons[3]

@seasons<Summer> ------> @seasons[0]
@seasons<Spring> ------> @seasons[1]
@seasons<Spring> ------> @seasons[0]
@seasons<Summer> ------> @seasons[1]
@seasons<Autumn> ------> @seasons[2]
@seasons<Winter> ------> @seasons[3]

Expand Down

0 comments on commit c0b0845

Please sign in to comment.