NAME

hubaddr - Data addresses

Top


SYNOPSIS

An address points to a value nested inside hash structures. It is semantically equivilent to a how a pathname points to a file on your hard-drive.

A nested hash structure is a hash who's elements may be hashes, arrays, or scalars. Sub-hashes and sub-arrays may also (recursively) contain these elements.

Top


DESCRIPTION

Given the nested structure:

  %hash {                               # Hash
      @fruit {                          # Array
          % {                           # Anonymous hash at index 0
              name  => apple
              color => red
              grown => Washington
          }
      }
  }

Top


AUTHOR

Ryan Gies

Top


COPYRIGHT

Copyright (c) 2006 Livesite Networks, LLC. All rights reserved.

Copyright (c) 2000-2005 Ryan Gies. All rights reserved.

Top


UPDATED

This file created by mkdocs.pl on 8/29/2006 at 2:07pm

Top