| Server IP : 104.21.94.62 / Your IP : 216.73.217.32 Web Server : Apache System : Linux semi1.us.cloudlogin.co 5.10.244-xeon-hst #1 SMP Sun Sep 14 17:09:20 UTC 2025 x86_64 User : xessglobal ( 271017) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : ON Directory : /usr/share/perl5/vendor_perl/Graph/ |
Upload File : |
package Graph::Directed;
use Graph;
use base 'Graph';
use strict;
=pod
=head1 NAME
Graph::Directed - directed graphs
=head1 SYNOPSIS
use Graph::Directed;
my $g = Graph::Directed->new;
# Or alternatively:
use Graph;
my $g = Graph->new(directed => 1);
my $g = Graph->new(undirected => 0);
=head1 DESCRIPTION
Graph::Directed allows you to create directed graphs.
For the available methods, see L<Graph>.
=head1 SEE ALSO
L<Graph>, L<Graph::Undirected>
=head1 AUTHOR AND COPYRIGHT
Jarkko Hietaniemi F<[email protected]>
=head1 LICENSE
This module is licensed under the same terms as Perl itself.
=cut
1;