Skip to content

Instantly share code, notes, and snippets.

View johnnyoin's full-sized avatar

Jeremy Bouillanne johnnyoin

  • WeMoms
  • Saint-Priest, Ardèche, France
View GitHub Profile
prefix operator ..
infix operator ..: MultiplicationPrecedence
/*
Custom operator that lets you configure an instance inline
```swift
let label = UILabel()..{
$0.numberOfLines = 0
$0.textColor = .systemRed
}