wrapper/array_test.go
2023-06-12 19:01:31 +08:00

22 lines
411 B
Go

// Package wrapper ...
//
// Description : wrapper ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2023-06-11 21:12
package wrapper
import (
"fmt"
"testing"
)
func TestArray(t *testing.T) {
val := []interface{}{1, 2, 3}
fmt.Println(Array(val).IsValid())
fmt.Println(Array(val).ItemIsInterface())
valInt := []int{1, 2, 3, 1, 4, 5, 6, 7, 7, 6, 9}
fmt.Println(Array(valInt).Unique())
}