एक type assertion interface value बाट concrete type निकाल्छ, र एक type switch interface को underlying type मा branch गर्छ। तिनीहरू interface (विशेषतः empty interface / any) बाट concrete type जानकारी फिर्ता पाउने तरिका हुन्।
Type assertion — एक concrete type निकाल्नु
i {} =
s := i.()
fmt.Println(s)
n := i.()
