Concept Flow - Comparing structs vs classes decision
Start: Need to model data
Decide: Value or Reference?
Use Struct
Copy on [Shared reference
changes affect all
Immutable [Mutable by default
End Decision
This flow shows how to decide between struct and class by choosing value or reference type, considering copying behavior, mutability, and use cases.