File: doc.go

package info (click to toggle)
golang-github-cheekybits-genny 1.0.0-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 336 kB
  • sloc: makefile: 17; sh: 3
file content (14 lines) | stat: -rw-r--r-- 539 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Package parse contains the generic code generation capabilities
// that power genny.
//
//     genny gen "{types}"
//
//     gen - generates type specific code (to stdout) from generic code (via stdin)
//
//     {types}  - (required) Specific types for each generic type in the source
//     {types} format:  {generic}={specific}[,another][ {generic2}={specific2}]
//     Examples:
//       Generic=Specific
//       Generic1=Specific1 Generic2=Specific2
//       Generic1=Specific1,Specific2 Generic2=Specific3,Specific4
package parse