Donate. I desperately need donations to survive due to my health

Get paid by answering surveys Click here

Click here to donate

Remote/Work from Home jobs

how to implement interface in struct

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