![]() |
![]()
| ![]() |
![]()
NAMEText::Diff3::Range3 - three-way difference container VERSION0.08 SYNOPSISuse Text::Diff3; my $f = Text::Diff3::Factory; my $range3 = $f->create_range3(1, 2,3, 4,5, 6,7); $type = $range3->type; # 1 $line_no = $range3->lo0; # 2 $line_no = $range3->hi0; # 3 $line_no = $range3->lo1; # 4 $line_no = $range3->hi1; # 5 $line_no = $range3->lo2; # 6 $line_no = $range3->hi2; # 7 print $range3->as_string, "\n"; # 1 2,3 4,5 6,7 DESCRIPTIONThis module provides you to handle trhee way difference sets. METHODS
COMPATIBILITYUse new function style interfaces introduced from version 0.08. This module remained for backward compatibility before version 0.07. This module is no longer maintenance after version 0.08. AUTHORMIZUTANI Tociyuki "<tociyuki@gmail.com>". LICENSE AND COPYRIGHTCopyright (C) 2010 MIZUTANI Tociyuki This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version.
|