⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 directed.pm

📁 nasm早期的源代码,比较简单是学习汇编和编译原理的好例子
💻 PM
字号:
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<jhi@iki.fi>

=head1 LICENSE

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

=cut

1;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -