Files
gf/util/gconv/gconv_slice_any.go

21 lines
582 B
Go

// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
package gconv
// SliceAny is alias of Interfaces.
func SliceAny(any interface{}) []interface{} {
return Interfaces(any)
}
// Interfaces converts `any` to []interface{}.
func Interfaces(any interface{}) []interface{} {
result, _ := defaultConverter.SliceAny(any, SliceOption{
ContinueOnError: true,
})
return result
}