एक type assertion एक interface value से concrete type निकालता है, और एक type switch एक interface के underlying type पर शाखा बनाता है। ये वही हैं जिनसे आप एक interface (खासकर empty interface / any) से विशिष्ट type जानकारी पुनः प्राप्त करते हैं।
type assertion — एक concrete type निकालें
i {} =
s := i.()
fmt.Println(s)
n := i.()
