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
/*IN- AND OUTPUT TYPES*********************************************************/ | |
// All methods and initializers are taking an instance of `In` as argument. | |
// The `PAT` and `PWSR` protocols does not adhere to this. | |
struct In { } | |
// All methods are returning an instance of `Out` as return value. | |
// The `methodReturningSelf` methods and the `PAT` protocol do not adhere to | |
// this. | |
struct Out { } |