Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

fillstruct Build Status GoDoc Go Report Card

fillstruct - fills a struct literal with default values


For example, given the following types,

type User struct {
	ID   int64
	Name string
	Addr *Address
}

type Address struct {
	City   string
	ZIP    int
	LatLng [2]float64
}

the following struct literal

var frank = User{}

becomes:

var frank = User{
	ID:   0,
	Name: "",
	Addr: &Address{
		City: "",
		ZIP:  0,
		LatLng: [2]float64{
			0.0,
			0.0,
		},
	},
}

after applying fillstruct.

Installation

% go get -u github.com/davidrjenni/reftools/cmd/fillstruct

Usage

% fillstruct [-modified] -file=<filename> -offset=<byte offset>

Flags:

-file:     filename
-modified: read an archive of modified files from stdin
-offset:   byte offset of the struct literal