reflect.IsValid() Function in Golang with Examples Last Updated : 03 May, 2020 Comments Improve Suggest changes Like Article Like Report Go language provides inbuilt support implementation of run-time reflection and allowing a program to manipulate objects with arbitrary types with the help of reflect package. The reflect.IsValid() Function in Golang is used to check whether v represents a value. To access this function, one needs to imports the reflect package in the program. Syntax: func (v Value) IsValid() bool Parameters: This function does not accept any parameter. Return Value: This function returns whether v represents a value or not. Below examples illustrate the use of the above method in Golang: Example 1: C // Golang program to illustrate // reflect.IsValid() Function package main import ( "fmt" "reflect" ) // Main function func main() { // Use of IsValid() method fmt.Println(reflect.Value{}.IsValid()) fmt.Println(reflect.ValueOf(nil).IsValid()) } Output: false false Example 2: C // Golang program to illustrate // reflect.IsValid() Function package main import ( "fmt" "reflect" ) // Main function func main() { var i *int v := reflect.ValueOf(i) v2 := v.Elem() // Use of IsValid() method fmt.Println(v2.IsValid()) fmt.Println(reflect.ValueOf(nil).IsValid()) fmt.Println(reflect.Indirect(v).IsValid()) } Output: false false false Comment More infoAdvertise with us Next Article reflect.IsValid() Function in Golang with Examples S SHUBHAMSINGH10 Follow Improve Article Tags : Go Language Golang-reflect Similar Reads reflect.IsNil() Function in Golang with Examples Go language provides inbuilt support implementation of run-time reflection and allowing a program to manipulate objects with arbitrary types with the help of reflect package. The reflect.IsNil() Function in Golang is used to check whether its argument v is nil. The argument must be a chan, func, int 2 min read reflect.Kind() Function in Golang with Examples Go language provides inbuilt support implementation of run-time reflection and allowing a program to manipulate objects with arbitrary types with the help of reflect package. The reflect.Kind() Function in Golang is used to find the name of kind. To access this function, one needs to imports the ref 2 min read reflect.IsZero() Function in Golang with Examples Go language provides inbuilt support implementation of run-time reflection and allowing a program to manipulate objects with arbitrary types with the help of reflect package. The reflect.IsZero() Function in Golang is used to check whether v is the zero value for its type. To access this function, o 1 min read reflect.Int() Function in Golang with Examples Go language provides inbuilt support implementation of run-time reflection and allowing a program to manipulate objects with arbitrary types with the help of reflect package. The reflect.Int() Function in Golang is used to get the v's underlying value, as an int64. To access this function, one needs 1 min read reflect.Index() Function in Golang with Examples Go language provides inbuilt support implementation of run-time reflection and allowing a program to manipulate objects with arbitrary types with the help of reflect package. The reflect.Index() Function in Golang is used to get the v's i'th element. To access this function, one needs to imports the 2 min read Like