mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 07:38:48 +00:00
Render examples.
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user