ALib C++ Library
Library Version: 2402 R1
Documentation generated by doxygen
Loading...
Searching...
No Matches
BidiNodeBase< TElement > Struct Template Reference

Description:

template<typename TElement>
struct alib::lang::BidiNodeBase< TElement >

This is a generic base type that represents a node of a doubly (bidirectional) linked lists. The effective (instantiated) nodes of the list are to be derived from this type with specifying their very own type name as template parameter TElement . For more information on this design, see explanations of parent type lang::SidiNodeBase .

By being derived from aforementioned type, instances of TElement may also be added to single-linked lists of type lang::SidiListHelper ). This is for example used by types List and HashTable to collect erased list elements for recycling.

See also
Types lang::SidiNodeBase ,
lang::SidiListHelper and
lang::BidiListHelper .
Template Parameters
TElementThe "final" node type, containing custom data fields, that is to be derived from this struct.

Definition at line 41 of file bidilist.hpp.

#include <bidilist.hpp>

Inheritance diagram for BidiNodeBase< TElement >:
[legend]
Collaboration diagram for BidiNodeBase< TElement >:
[legend]

Public Type Index:

using FWDNode = SidiNodeBase<TElement>
 

Public Field Index:

TElement * pprev
 
- Public Field Index: inherited from SidiNodeBase< TElement >
TElement * pnext
 

Public Method Index:

 BidiNodeBase () noexcept=default
 
 BidiNodeBase (BidiNodeBase &&) noexcept=default
 
 BidiNodeBase (const BidiNodeBase &)=delete
 
 BidiNodeBase (TElement *next, TElement *prev) noexcept
 
void addBefore (TElement *elem)
 
void addBehind (TElement *elem)
 
BidiNodeBaseoperator= (BidiNodeBase &&) noexcept=default
 
BidiNodeBaseoperator= (const BidiNodeBase &)=delete
 
TElement * prev () const
 
void prev (BidiNodeBase *newPrev)
 
void remove ()
 
void remove (TElement *last)
 
- Public Method Index: inherited from SidiNodeBase< TElement >
 SidiNodeBase () noexcept=default
 
 SidiNodeBase (const SidiNodeBase &)=delete
 
 SidiNodeBase (SidiNodeBase &&) noexcept=default
 
 SidiNodeBase (TElement *next) noexcept
 
TElement * addBehind (TElement *elem)
 
integer count (SidiNodeBase *end=nullptr) const
 
bool hasNext () const
 
TElement * next () const
 
void next (SidiNodeBase *p)
 
SidiNodeBaseoperator= (const SidiNodeBase &)=delete
 
SidiNodeBaseoperator= (SidiNodeBase &&) noexcept=default
 
bool pointsTo (const SidiNodeBase *elem) const
 
TElement * removeNext ()
 
TElement * removeRangeBehind (TElement *last)
 

Type Definition Details:

◆ FWDNode

template<typename TElement >
using FWDNode = SidiNodeBase<TElement>

Alias name for the an instantiation of the base template.

Definition at line 44 of file bidilist.hpp.

Field Details:

◆ pprev

template<typename TElement >
TElement* pprev

A pointer to the previous element in the list.

Attention
If this is the first node in the list, this object will point to the list hook, which is an instance of this type instead of template type TElement .

Definition at line 50 of file bidilist.hpp.

Constructor(s) / Destructor Details::

◆ BidiNodeBase() [1/4]

template<typename TElement >
BidiNodeBase ( )
defaultnoexcept

Default constructor. (Does not initialize the pointer!)

◆ BidiNodeBase() [2/4]

template<typename TElement >
BidiNodeBase ( const BidiNodeBase< TElement > & )
delete

Deleted copy constructor. This is deleted because it is dangerous, respectively often not possible and also mostly not wanted to be able to create copies of derived type TElement

◆ BidiNodeBase() [3/4]

template<typename TElement >
BidiNodeBase ( BidiNodeBase< TElement > && )
defaultnoexcept

Defaulted move constructor.

◆ BidiNodeBase() [4/4]

template<typename TElement >
BidiNodeBase ( TElement * next,
TElement * prev )
inlinenoexcept

Constructor accepting a pointer to the next and previous elements.

Parameters
nextPointer to the next element. Assigned to inherited field lang::SidiNodeBase::pnext .
prevPointer to the next element. Assigned to field pprev.

Definition at line 78 of file bidilist.hpp.

Method Details:

◆ addBefore()

template<typename TElement >
void addBefore ( TElement * elem)
inline

Hooks the given element before this node.

Parameters
elemThe element to add.

Definition at line 93 of file bidilist.hpp.

Here is the call graph for this function:

◆ addBehind()

template<typename TElement >
void addBehind ( TElement * elem)
inline

Hooks the given element behind this node.

Parameters
elemThe element to add.

Definition at line 103 of file bidilist.hpp.

Here is the call graph for this function:

◆ operator=() [1/2]

template<typename TElement >
BidiNodeBase & operator= ( BidiNodeBase< TElement > && )
defaultnoexcept

Defaulted move assignment operator.

Returns
A reference to this object.

◆ operator=() [2/2]

template<typename TElement >
BidiNodeBase & operator= ( const BidiNodeBase< TElement > & )
delete

Deleted copy assignment operator. This is deleted because it is dangerous, respectively often not possible and also mostly not wanted to created copies of derived type TElement

Returns
Not defined.

◆ prev() [1/2]

template<typename TElement >
TElement * prev ( ) const
inline

Returns the backward pointer of this node.

Returns
Pointer to the previous element.

Definition at line 85 of file bidilist.hpp.

◆ prev() [2/2]

template<typename TElement >
void prev ( BidiNodeBase< TElement > * newPrev)
inline

Sets the backward pointer of this node.

Parameters
newPrevPointer to the previous element.

Definition at line 89 of file bidilist.hpp.

◆ remove() [1/2]

template<typename TElement >
void remove ( )
inline

Unhooks this node from a list.

Definition at line 112 of file bidilist.hpp.

Here is the call graph for this function:

◆ remove() [2/2]

template<typename TElement >
void remove ( TElement * last)
inline

Unhooks the range of nodes starting with this node and ending with last a list.

Parameters
lastThe last element of the range to remove.

Definition at line 120 of file bidilist.hpp.

Here is the call graph for this function:

The documentation for this struct was generated from the following file: