gitlab.com/evatix-go/core@v1.3.55/isany/ReflectNotNull.go (about)

     1  package isany
     2  
     3  // ReflectNotNull
     4  //
     5  // Returns true for not nil.
     6  //
     7  // Reference : https://stackoverflow.com/a/43896204
     8  func ReflectNotNull(item interface{}) bool {
     9  	return !ReflectNull(item)
    10  }