(i fastJsonNode, j fastJsonNode)
| 172 | } |
| 173 | |
| 174 | func (enc *encoder) less(i fastJsonNode, j fastJsonNode) bool { |
| 175 | attri := enc.getAttr(i) |
| 176 | attrj := enc.getAttr(j) |
| 177 | return strings.Compare(enc.attrForID(attri), enc.attrForID(attrj)) <= 0 |
| 178 | } |
| 179 | |
| 180 | func frontBackSplit(source fastJsonNode, |
| 181 | frontRef *fastJsonNode, backRef *fastJsonNode) { |
no test coverage detected