github.com/goccy/go-reflect@v1.2.1-0.20220925055700-4646ad15ec8a/reflect113.go (about)

     1  // +build go1.13
     2  
     3  package reflect
     4  
     5  // IsZero reports whether v is the zero value for its type.
     6  // It panics if the argument is invalid.
     7  func (v Value) IsZero() bool {
     8  	return toRV(v).IsZero()
     9  }