DecodeDecimalAscending returns the remaining byte slice after decoding and the decoded decimal from buf.
(buf []byte, tmp []byte)
| 247 | // DecodeDecimalAscending returns the remaining byte slice after decoding and the decoded |
| 248 | // decimal from buf. |
| 249 | func DecodeDecimalAscending(buf []byte, tmp []byte) ([]byte, apd.Decimal, error) { |
| 250 | return decodeDecimal(buf, tmp, false) |
| 251 | } |
| 252 | |
| 253 | // DecodeDecimalDescending decodes decimals encoded with EncodeDecimalDescending. |
| 254 | func DecodeDecimalDescending(buf []byte, tmp []byte) ([]byte, apd.Decimal, error) { |
no test coverage detected
searching dependent graphs…