Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/isensee-bastian/set-generics
- Owner: isensee-bastian
- License: mit
- Created: 2022-04-21T20:03:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-04-21T20:04:41.000Z (over 2 years ago)
- Last Synced: 2024-10-28T09:29:33.085Z (3 months ago)
- Topics: basic-programming, beginner-tutorial-series, data-structures, generics, golang, interfaces, learn-to-code, sets, tutorial, types, youtube
- Language: Go
- Homepage: https://youtu.be/WRqnQIBLvaU
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)