(input []any)
| 67 | } |
| 68 | |
| 69 | func encodeMCPSlice(input []any) []any { |
| 70 | result := make([]any, len(input)) |
| 71 | for i, item := range input { |
| 72 | result[i] = encodeMCPValue(item) |
| 73 | } |
| 74 | return result |
| 75 | } |
| 76 | |
| 77 | func encodeMCPReflectSlice(v reflect.Value) []any { |
| 78 | result := make([]any, v.Len()) |
no test coverage detected