NAME
Data::LinkedList::Entry - Object to represent an entry in the list.
DESCRIPTION
Each Entry object has three properties:
dataThe entry data. This can contain data type, including data structures.nextThe next entry in the list.previousThe previous entry in the list.
METHODS
new
Instantiates and returns a new Data::LinkedList::Entry object. Doesn't require any parameters - the properties of the object can be set after instantiation.
AUTHOR
Lloyd Griffiths
COPYRIGHT
Copyright (c) 2013 Lloyd Griffiths
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.