Bei einem meiner Kunden gibt es ein größeres Implementierungsprojekt, bei dem es bereits seit vielen Monaten üblich ist, den Betrieb des sich in der Pilotphase befindlichen Software-Systems durch Projektmitarbeiter unterstützen zu lassen. Projektmitarbeiter (Entwickler, Tester, Software-Architekten) sitzen also während der Produktion bei den betrieblichen Mitarbeitern und übernehmen selbst teilweise die Rolle der Operators. Das hat viele gute Gründe, z.B.
Equatable enums with associated values
Enums with associated values are a very powerful tool in Swift. You can store context sensitive information along with the value of the enum itself without the need of an additional data structure. But, as of in Swift 3.1, it has some serious limitations. For example, comparisons of enums are not that easy. Let’s look at this simple code: