If i had a Go struct with a long list of fields. Is there a built-in way to initialize an instance while providing value for specific fields only?
struct
You just have to write structType{fieldName: value} !
structType{fieldName: value}