Instead of: ```c++ Ty_1 val; val.foo = 123; val.bar = baz; ``` go like: ```c++ const Ty_1 val(123, baz); ``` To facilitate immutability and URVO.