[#bsl-_Slist_node] = xref:bsl.adoc[bsl]::_Slist_node :relfileprefix: ../ :mrdocs: Singly‐linked list node storing a value of type `_Tp`. == Synopsis Declared in `<bslstp_slist.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class _Tp> struct _Slist_node : xref:bsl/_Slist_node_base.adoc[_Slist_node_base] ---- == Base Classes [cols="1,4"] |=== | Name| Description | `xref:bsl/_Slist_node_base.adoc[_Slist_node_base]` | Intrusive singly‐linked list node base holding a next pointer. |=== == Data Members [cols="1,4"] |=== | Name| Description | xref:bsl/_Slist_node/_M_data.adoc[`_M_data`] | Value stored in this node. | xref:bsl/_Slist_node_base/_M_next.adoc[`_M_next`] | Pointer to the next node in the list, or null. |=== == Non-Member Functions [cols="1,4"] |=== | Name| Description | xref:bsl/__slist_make_link.adoc[`__slist_make_link`] | Link `__new_node` immediately after `__prev_node` and return `__new_node`. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#