Algorithm::Diff3::Range3 - three way difference container


NAME

Algorithm::Diff3::Range3 - three way difference container


SYNOPSIS

  use Algorithm::Diff3;
  my $f = Algorithm::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


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.

 Algorithm::Diff3::Range3 - three way difference container