(value reflect.Value)
| 693 | } |
| 694 | |
| 695 | func stringSliceValue(value reflect.Value) []string { |
| 696 | if value.CanAddr() { |
| 697 | return *(*[]string)(value.Addr().UnsafePointer()) |
| 698 | } |
| 699 | return value.Interface().([]string) |
| 700 | } |
| 701 | |
| 702 | // ============================================================================ |
| 703 | // Exported helper functions for primitive slice serialization (ARRAY protocol) |
no outgoing calls
no test coverage detected