gitlab.com/evatix-go/core@v1.3.55/coredata/coredynamic/AnySliceValToInterfacesAsync.go (about)

     1  package coredynamic
     2  
     3  import (
     4  	"reflect"
     5  
     6  	"gitlab.com/evatix-go/core/internal/reflectinternal"
     7  )
     8  
     9  func AnySliceValToInterfacesAsync(
    10  	slice interface{},
    11  ) []interface{} {
    12  	if slice == nil {
    13  		return []interface{}{}
    14  	}
    15  
    16  	return reflectinternal.ReflectValToInterfacesAsync(
    17  		reflect.ValueOf(slice))
    18  }