1Annotate(3) User Contributed Perl Documentation Annotate(3)
2
3
4
6 Algorithm::Annotate - represent a series of changes in annotate form
7
9 use Algorithm::Annotate;
10
11 my $ann = Algorithm::Annotate->new ();
12
13 $ann->add ($info1, \@seq1);
14
15 $ann->add ($info2, \@seq2); $ann->add ($info3, \@seq3);
16
17 $result = $ann->result;
18
20 Algorithm::Annotate generates a list that is useful for generating
21 output simliar to "cvs annotate".
22
24 Might parse diff output and accumulate them for generating the annotate
25 list.
26
28 Chia-liang Kao <clkao@clkao.org>
29
31 Copyright 2003 by Chia-liang Kao <clkao@clkao.org>.
32
33 This program is free software; you can redistribute it and/or modify it
34 under the same terms as Perl itself.
35
36 See <http://www.perl.com/perl/misc/Artistic.html>
37
38
39
40perl v5.34.0 2022-01-20 Annotate(3)