Skip to content

Instantly share code, notes, and snippets.

@sisoje
Last active February 7, 2019 23:33
Show Gist options
  • Save sisoje/c4c0af577fadf38d0c6a9056753158b5 to your computer and use it in GitHub Desktop.
Save sisoje/c4c0af577fadf38d0c6a9056753158b5 to your computer and use it in GitHub Desktop.
infix operator ~: MultiplicationPrecedence
@discardableResult
func ~<U: AnyObject>(object: U, block: (U) -> Void) -> U {
block(object)
return object
}
let titleLabel = UILabel() ~ {
$0.font = .systemFont(ofSize: 22)
$0.textColor = .red
$0.text = "WELCOME"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment