Joshua Worth
Results
2
comments of
Joshua Worth
That example code doesn't call `make_big_thing` twice while mine does, so it misses the point. `make_big_thing` takes a `BoxAllocation` because it wants an uninitialised space to put an instance of...
Say I have some function that parses data about an animal from a file: ``` struct Animal { age: u32, weight: f32, height: f32, number_of_legs: u32, a lot of other...