Implementing a MyBool Type in Swift
The boolean
Booltype in Swift underlies a lot of primitive functionality, making it an interesting demonstration of how to build a simple type. This post walks through the creation of a newMyBooltype designed and implemented to be very similar to theBooltype built into Swift. We hope this walk through the design of a simple Swift type will help you better understand how the language works.