This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
protocol VideoFilter { | |
func addFilter(completion: @escaping (Bool) -> Void) | |
} | |
struct ChainedFilter: VideoFilter { | |
let primary: VideoFilter | |
let next: VideoFilter | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print('Hello World!') |