Closed mdawar closed 1 month ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 94.53%. Comparing base (
9f1afce
) to head (5eb136f
). Report is 7 commits behind head on master.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Hey,
Currently the
Decimal
type does not support text-based encoding, for example YAML encoding will produce{}
instead of a string representation of the decimal value.This pull request implements the
encoding.TextMarshaler
andencoding.TextUnmarshaler
interfaces which are recognized by many text-based encoding packages and libraries.