This looks right: ``` new Data(bytes, arena) ``` but is super wrong, because this just wraps the pointer to the types, but instead we want to ``` Data.init(bytes, arena), ``` which runs the Data initializer. We should hide the constructors and offer them via a well named "scary" method name
This looks right:
but is super wrong, because this just wraps the pointer to the types, but instead we want to
which runs the Data initializer.
We should hide the constructors and offer them via a well named "scary" method name