What is the ‘open’ keyword in Swift?
open is a new access level in Swift 3, introduced with the implementation of SE-0117 Allow distinguishing between public access and public overridability It is available with the Swift 3 snapshot from August 7, 2016, and with Xcode 8 beta 6. In short: An open class is accessible and subclassable outside of the defining module. … Read more