Harsha AgarwalUnderstanding associatedtype in SwiftWhen you hear the term “associatedtype” in Swift, it might sound intimidating, but it’s actually a simple and powerful concept that lets…Aug 91
Eugene StatnikovGenerics in Swift (Associatedtype, Type Erasure).Generics allow us to write flexible and reusable code that can work with different types without having to create duplicate functions or…Oct 3Oct 3
David DoswellHow to Protocol with Associated TypesWhat’s changed in 10 years? Not much, fortunately.Aug 14Aug 14
Harsha AgarwalUnderstanding associatedtype in SwiftWhen you hear the term “associatedtype” in Swift, it might sound intimidating, but it’s actually a simple and powerful concept that lets…Aug 91
Eugene StatnikovGenerics in Swift (Associatedtype, Type Erasure).Generics allow us to write flexible and reusable code that can work with different types without having to create duplicate functions or…Oct 3
David DoswellHow to Protocol with Associated TypesWhat’s changed in 10 years? Not much, fortunately.Aug 14
AbhinayCreate a generic protocol for UITableView data source.In our last post, we learned how to create and use a Generic Protocol by using the associated type. In this post, we will create a generic…May 4
AbhinayAssociated types: Generic Protocol in SwiftIn Swift, a protocol can be made generic by using associated types. Associated types give a placeholder name to a type that is used as part…Mar 7