• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

[Snippet] NxList

Oh yea, there are a few different types of linked lists

Linked list with changing head (this)
Linked list with head
Circular linked list with changing head
Circular linked list with head
Static linked list
Static circular linked list

Not all of these have been coded

You can do array versions and table versions of all of the non-static ones too.

edit
With this, you can do some cool things =)

JASS:
local unit u = CreateUnit(...)
local thistype this = GetUnitUserData(u)
local thistype node = add() //o-o, yes, I just added a node directly to the unit
 
Last edited:
Top