NAME

Doubly::Linked - Doubly linked lists

VERSION

Version 0.01

SYNOPSIS

use Doubly::Linked;

my $list = Doubly::Linked->new();

$list->insert_at_start(1);
$list = $list->insert_at_end(2);
$list->insert_after(3);

$list = $list->start;
$list = $list->next;
$list = $list->prev;

$list->data;
$list->data($new_data);

$list->remove;

SUBROUTINES/METHODS

AUTHOR

LNATION, <email at lnation.org>

BUGS

Please report any bugs or feature requests to bug-doubly-linked at rt.cpan.org, or through the web interface at https://rt.cpan.org/NoAuth/ReportBug.html?Queue=Doubly-Linked. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc Doubly::Linked

You can also look for information at:

ACKNOWLEDGEMENTS

LICENSE AND COPYRIGHT

This software is Copyright (c) 2025 by LNATION.

This is free software, licensed under:

The Artistic License 2.0 (GPL Compatible)