Render examples.

This commit is contained in:
Jeroen van Rijn
2025-10-10 12:24:28 +02:00
parent 4068eeb5fa
commit ece213afca
29 changed files with 146 additions and 139 deletions
+4 -6
View File
@@ -1,10 +1,7 @@
// An intrusive doubly-linked list.
package container_intrusive_list
/*
Package list implements an intrusive doubly-linked list.
An intrusive doubly-linked list.
An intrusive container requires a `Node` to be embedded in your own structure, like this.
The intrusive container requires a `Node` to be embedded in your own structure, like this.
Example:
My_String :: struct {
node: list.Node,
@@ -48,4 +45,5 @@ Example:
Output:
Hello
World
*/
*/
package container_intrusive_list