logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Graph::Directed - directed graphs

Description

       Graph::Directed allows you to create directed graphs.

       For the available methods, see Graph.

License

       This module is licensed under the same terms as Perl itself.

perl v5.40.1                                       2025-03-28                               Graph::Directed(3pm)

Name

       Graph::Directed - directed graphs

See Also

       Graph, Graph::Undirected

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);

See Also