Skip to content

Instantly share code, notes, and snippets.

@chriswebb09
Created May 11, 2017 18:41
Show Gist options
  • Save chriswebb09/e24ba18ff0af60b9187e881221b9f043 to your computer and use it in GitHub Desktop.
Save chriswebb09/e24ba18ff0af60b9187e881221b9f043 to your computer and use it in GitHub Desktop.
class LLNode<T> {
var value: T
var next: LLNode?
weak var previous: LLNode?
init(value: T) {
self.value = value
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment