Skip to content

Instantly share code, notes, and snippets.

@shabib87
Last active March 13, 2017 10:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shabib87/305325781d76f991b7376ec7cc916915 to your computer and use it in GitHub Desktop.
Save shabib87/305325781d76f991b7376ec7cc916915 to your computer and use it in GitHub Desktop.
In support to blog post
class HTMLElement {
...
lazy var asHTML: () -> String = { [weak self] in
guard let htmlElement = self else { return "" }
return "<\(htmlElement.name)>\(htmlElement.text)</\(htmlElement.name)>"
}
...
}
var paragraph: HTMLElement? = HTMLElement(name: "p", text: "hello, world")
paragraph?.asHTML()
paragraph = nil
// Output:
// HTMLElement p is being deinitialized
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment