FullMerge the full sequence of operands on top of an existingValue and returns the merged value. The existingValue may be nil if no value currently exists. If full merge cannot be done, return (nil, false).
(key, existingValue []byte, operands [][]byte)
| 520 | // may be nil if no value currently exists. If full merge cannot |
| 521 | // be done, return (nil, false). |
| 522 | FullMerge(key, existingValue []byte, operands [][]byte) ([]byte, bool) |
| 523 | |
| 524 | // Partially merge two operands. If partial merge cannot be done, |
| 525 | // return (nil, false), which will defer processing until a later |
no outgoing calls
no test coverage detected