Closed muktihari closed 2 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 100.00%. Comparing base (
50d2a35
) to head (61e0f86
).
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
When using primitive bool we can only represent an exist value: true and false, and we can't represent invalid value for boolean that way. Since a boolean value is typically used for configuration settings, using false as an invalid value is incorrect. How can we indicate that the user may not have set the value or the value may only be set when used?. For this reason, implementing typedef.Bool to accommodate nullable/unset boolean value becomes necessary.