(in []*pbx.SeqRange)
| 1068 | } |
| 1069 | |
| 1070 | func pbDelQueryDeserialize(in []*pbx.SeqRange) []MsgRange { |
| 1071 | if in == nil { |
| 1072 | return nil |
| 1073 | } |
| 1074 | |
| 1075 | out := make([]MsgRange, len(in)) |
| 1076 | for i, sr := range in { |
| 1077 | out[i].LowId = int(sr.GetLow()) |
| 1078 | out[i].HiId = int(sr.GetHi()) |
| 1079 | } |
| 1080 | |
| 1081 | return out |
| 1082 | } |
| 1083 | |
| 1084 | func pbDelValuesSerialize(in *MsgDelValues) *pbx.DelValues { |
| 1085 | if in == nil { |
no test coverage detected
searching dependent graphs…