Help for this page

Select Code to Download


  1. or download this
    Edge->new(); # all properties set to undef
    Edge->new("from_node","to_node"); # label set to undef
    Edge->new("from_node","to_node","label"); # all props set
    
  2. or download this
    sub new()
    {
    ...
      bless $self, $class;
      return $self;
    }