()
| 64 | } |
| 65 | |
| 66 | func commonSlice() []any { |
| 67 | return []any{ |
| 68 | (&[100]bool{})[:], |
| 69 | (&[100]byte{})[:], |
| 70 | // (&[100]int8{})[:], |
| 71 | (&[100]int16{})[:], |
| 72 | (&[100]int32{})[:], |
| 73 | (&[100]int64{})[:], |
| 74 | (&[100]float32{})[:], |
| 75 | (&[100]float64{})[:], |
| 76 | []string{"str1", "str1", "", "", "str2"}, |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | func commonMap() []any { |
| 81 | return []any{ |
no outgoing calls
no test coverage detected