Could you explain how could be the value of Astruct with examble?
type Astruct struct {
m map[string] Bstruct
}
type Bstruct struct {
name bool
i Cinterface
}
type Cinterface interface {
catchMe()
}
Could you explain how could be the value of Astruct with examble?
type Astruct struct {
m map[string] Bstruct
}
type Bstruct struct {
name bool
i Cinterface
}
type Cinterface interface {
catchMe()
}
Comments
Post a Comment