mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
989772c9ac
had both lines: Author: ... WWW: .... So standardize on that, and move them to the end of the file when necessary. Also fix some more whitespace, and remove more "signature tags" of varying forms, like -- name, etc. s/AUTHOR/Author/ A few other various formatting issues
19 lines
804 B
Plaintext
19 lines
804 B
Plaintext
Sort::Tree implements a mechanism for sorting a list of objects into a
|
|
tree structure and flattening it back into a list. Among other things,
|
|
this is useful for displaying database queries in hierarchical views,
|
|
such as nested categories, parent-child relationships, threaded
|
|
discussions, and so forth.
|
|
|
|
Trees have a lot to do with Graph theory, so if this module doesn't suit
|
|
your fancy, have a look at the Graph:: Perl modules for an academically
|
|
oriented implementation that employs vertex, edge, and node operations.
|
|
|
|
For more information on how to use the perl module, see the
|
|
pod documentation via the command
|
|
perldoc Sort::Tree
|
|
or, after installation, view the man pages with
|
|
man Sort::Tree
|
|
|
|
Author: Bryce Harrington <brycehar@bryceharrington.com>
|
|
WWW: http://search.cpan.org/dist/Sort-Tree/
|