XAO::SimpleHash - Simple 2D hash manipulations


XAO-Base documentation  | view source Contained in the XAO-Base distribution.

Index


NAME

Top

XAO::SimpleHash - Simple 2D hash manipulations

SYNOPSIS

Top

  use XAO::SimpleHash;

  my $h=new XAO::SimpleHash a => 11, b => 12, c => 13;

  $h->put(d => 14);

  $h->fill(\%config);

  my @keys=$h->keys;

DESCRIPTION

Top

Base object from which various hash-like containers are derived.

Methods are (alphabetical order, PERL API):

JAVA STYLE API

Top



In addition to normal Perl style API outlined above XAO::SimpleHash allows developer to use Java style API. Here is the mapping between Perl API and Java API:

  isSet          --  defined
  containsKey    --  exists
  elements       --  values
  remove         --  delete
  containsValue  --  contains

EXPORTS

Top



Nothing.

AUTHORS

Top



Copyright (c) 1997-2001 XAO Inc.

Authors are Marcos Alves <alves@xao.com>, Bil Drury <bild@xao.com>, Andrew Maltsev <am@xao.com>.

XAO-Base documentation  | view source Contained in the XAO-Base distribution.