Graph::Directed (3)
Leading comments
Automatically generated by Pod::Man 2.28 (Pod::Simple 3.28) Standard preamble: ========================================================================
NAME
Graph::Directed - directed graphsSYNOPSIS
use Graph::Directed; my $g = Graph::Directed->new; # Or alternatively: use Graph; my $g = Graph->new(directed => 1); my $g = Graph->new(undirected => 0);
DESCRIPTION
Graph::Directed allows you to create directed graphs.For the available methods, see Graph.