NAME

Text::Diff3::Range2 - two way difference container

SYNOPSIS

use Text::Diff3;
my $f = Text::Diff3::Factory;
my $range2 = $f->create_range2( 'c', 100,102, 104,110 );
$type = $range2->type;    # 'c'
$line_no = $range2->loA;  # 100
$line_no = $range2->hiA;  # 102
$line_no = $range2->loB;  # 104
$line_no = $range2->hiB;  # 110
print $range2->as_string, "\n"; # 100,102c104,110

AUTHOR

MIZUTANI Tociyuki <tociyuki@gmail.com>

COPYRIGHT AND LICENSE

Copyright (C) 2005 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.