Source File
safe_struct.go
Belonging Package
github.com/modern-go/reflect2
package reflect2type safeStructType struct {safeType}func ( *safeStructType) ( string) StructField {, := .Type.FieldByName()if ! {panic("field " + + " not found")}return &safeField{StructField: }}func ( *safeStructType) ( int) StructField {return &safeField{StructField: .Type.Field()}}func ( *safeStructType) ( []int) StructField {return &safeField{StructField: .Type.FieldByIndex()}}func ( *safeStructType) ( func(string) bool) StructField {, := .Type.FieldByNameFunc()if ! {panic("field match condition not found in " + .Type.String())}return &safeField{StructField: }}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |