package Algorithm::SkipList::Header; use 5.006; use strict; use warnings::register __PACKAGE__; use base 'Algorithm::SkipList::Node'; use Carp qw( carp ); our $VERSION = '1.02'; # $VERSION = eval $VERSION; sub key_cmp { -1; } sub key { carp "this method should never be run", if (warnings::enabled); return; } sub value { carp "this method should never be run", if (warnings::enabled); return; } 1; __END__ =head1 NAME Algorithm::SkipList::Header - header node class for Algorithm::SkipList =head1 DESCRIPTION This is a specialized subclass of L for header nodes. =head1 AUTHOR Robert Rothenberg =head2 Suggestions and Bug Reporting Feedback is always welcome. Please use the CPAN Request Tracker at L to submit bug reports. =head1 LICENSE Copyright (c) 2003-2005 Robert Rothenberg. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 SEE ALSO Algorithm::SkipList =cut