package q5 type XParams struct { Sender XValue Param1 XValue Param2 XValue Param3 XValue } func (this *XParams) Reset() *XParams { return this } func (this *XParams) Init(initFunc func (*XParams)) *XParams { initFunc(this) return this }