Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/isensee-bastian/set-generics

Tutorial code for my video Generics Part 3: How to use Generics in Golang
https://github.com/isensee-bastian/set-generics

basic-programming beginner-tutorial-series data-structures generics golang interfaces learn-to-code sets tutorial types youtube

Last synced: about 1 month ago
JSON representation

Tutorial code for my video Generics Part 3: How to use Generics in Golang

Awesome Lists containing this project

README

        

# Generics Part 3: Set Implementation with Generics
* Why use generics
* Allows code reuse
* Allows restrictions on types that the compiler can verify
* Using generics
* Defining generic types and functions
* Using generic types and functions
* Disadvantage: Complexity increases (readability)