You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
761 B
29 lines
761 B
{{with .PDoc}}{{/* |
|
|
|
Constants |
|
--------------------------------------- |
|
|
|
*/}}{{with .Consts}}{{range .}}{{range .Names}}{{.}} {{end}}{{end}}{{end}}{{/* |
|
|
|
Variables |
|
--------------------------------------- |
|
|
|
*/}}{{with .Vars}}{{range .}}{{range .Names}}{{.}} {{end}}{{end}}{{end}}{{/* |
|
|
|
Functions |
|
--------------------------------------- |
|
|
|
*/}}{{with .Funcs}}{{range .}}{{ .Name }} {{end}}{{end}}{{/* |
|
|
|
Types |
|
--------------------------------------- |
|
|
|
*/}}{{with .Types}}{{range .}}{{ $TypeName := .Name }}{{ $TypeName }} {{/* |
|
|
|
*/}}{{range .Methods}}{{ $TypeName }}.{{.Name}} {{end}}{{/* |
|
|
|
*/}}{{range .Funcs}}{{.Name}} {{end}}{{/* |
|
|
|
*/}}{{range .Consts}}{{range .Names}}{{.}} {{end}}{{end}}{{/* |
|
|
|
*/}}{{range .Vars}}{{range .Names}}{{.}} {{end}}{{end}}{{end}}{{end}}{{end}}
|
|
|