I have an Objective-C variable that conforms to multiple protocols.
id identityToken;
How would I re
Swift 3
var idToken: NSObjectProtocol & NSCopying & NSCoding func foo(_ delegateAndDataSource: UICollectionViewDelegate & UICollectionViewDataSource) { ... }