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