To Value Object or Not To: How I choose Value Objects

from blog Just Some Code, | ↗ original
This post is part of my Advent of Code 2022. Today I reviewed a pull request and had a conversation about when to use Value Objects instead of primitive values. This is the code that started the conversation and my rationale to promote a primitive value to a Value Object. Prefer Value Objects to encapsulate validations or custom methods on a...