Skip to content

Latest commit

 

History

History
94 lines (80 loc) · 4.85 KB

generics.md

File metadata and controls

94 lines (80 loc) · 4.85 KB

Bookmarks tagged [generics]

https://docs.oracle.com/javase/tutorial/extra/generics/index.html

Introduced in J2SE 5.0, this long-awaited enhancement to the type system allows a type or method to operate on objects of various types while providing compile-time type safety. It adds compile-time t...


https://github.com/t0pep0/efaceconv

Code generation tool for high performance conversion from interface{} to immutable type without allocations.


https://github.com/clipperhouse/gen

Code generation tool for ‘generics’-like functionality.


https://github.com/senselogic/GENERIS

Code generation tool providing generics, free-form macros, conditional compilation and HTML templating.


https://github.com/abice/go-enum

Code generation for enums from code comments.


https://github.com/ahmetalpbalkan/go-linq

.NET LINQ-like query methods for Go.


https://github.com/awalterschulze/goderive

Derives functions from input types.


https://github.com/wzshiming/gotype

Golang source code parsing, usage like reflect package.


https://github.com/hexdigest/gowrap

Generate decorators for Go interfaces using simple templates.


https://github.com/rjeczalik/interfaces

Command line tool for generating interface definitions.


https://github.com/dave/jennifer

Generate arbitrary Go code without templates.


https://github.com/ungerik/pkgreflect

Go preprocessor for package scoped reflection.


https://www.baeldung.com/java-generics

A quick intro tot he basics of Java Generics.