generic.go
1package generic
2
3// Type is the placeholder type that indicates a generic value.
4// When genny is executed, variables of this type will be replaced with
5// references to the specific types.
6// var GenericType generic.Type
7type Type interface{}
8
9// Number is the placehoder type that indiccates a generic numerical value.
10// When genny is executed, variables of this type will be replaced with
11// references to the specific types.
12// var GenericType generic.Number
13type Number float64