1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
[]interface {}{
false,
true,
7,
10,
10,
10,
10,
10,
10,
10,
10,
10,
12.3,
12.3,
1.0,
1.0,
complex64(12+10.5i),
complex128(-1.2-0.1i),
&10,
"string with \"quote\"",
[]int{
1,
2,
3,
},
"hello from interface",
litter_test.BlankStruct{},
&litter_test.BlankStruct{},
litter_test.BasicStruct{
Public: 1,
private: 2,
},
10,
&10,
litter_test.Function,
func(string) (bool, error),
nil,
nil,
litter_test.CustomMap{},
litter_test.CustomMap(nil),
chan string,
chan<- int64,
<-chan uint64,
}
|