mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 03:05:05 +08:00
47 lines
1.0 KiB
Go
47 lines
1.0 KiB
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
|
|
|
|
// SliceInt is alias of Ints.
|
|
func SliceInt(any any) []int {
|
|
return Ints(any)
|
|
}
|
|
|
|
// SliceInt32 is alias of Int32s.
|
|
func SliceInt32(any any) []int32 {
|
|
return Int32s(any)
|
|
}
|
|
|
|
// SliceInt64 is alias of Int64s.
|
|
func SliceInt64(any any) []int64 {
|
|
return Int64s(any)
|
|
}
|
|
|
|
// Ints converts `any` to []int.
|
|
func Ints(any any) []int {
|
|
result, _ := defaultConverter.SliceInt(any, SliceOption{
|
|
ContinueOnError: true,
|
|
})
|
|
return result
|
|
}
|
|
|
|
// Int32s converts `any` to []int32.
|
|
func Int32s(any any) []int32 {
|
|
result, _ := defaultConverter.SliceInt32(any, SliceOption{
|
|
ContinueOnError: true,
|
|
})
|
|
return result
|
|
}
|
|
|
|
// Int64s converts `any` to []int64.
|
|
func Int64s(any any) []int64 {
|
|
result, _ := defaultConverter.SliceInt64(any, SliceOption{
|
|
ContinueOnError: true,
|
|
})
|
|
return result
|
|
}
|