18 lines
247 B
Go
18 lines
247 B
Go
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
|
|
}
|