Category talk:Wren-llist: Difference between revisions

Content added Content deleted
(→‎Source code: 'add' methods now return the item(s) added.)
(→‎Source code: Removed type aliases which are no longer needed.)
Line 981: Line 981:
// Returns the string representation of the current instance.
// Returns the string representation of the current instance.
toString { "[" + toList.join(" <-> ") +"]" }
toString { "[" + toList.join(" <-> ") +"]" }
}</lang>
}

// Type aliases for classes in case of any name clashes with other modules.
var LList_Node = Node
var LList_LinkedList = LinkedList
var LList_DNode = DNode
var LList_DLinkedList = DLinkedList</lang>