|
|
|
|
|
by RyanJK5
14 days ago
|
|
Yes. duck takes ownership of the vector by moving it into its internal storage. As a bonus, if you tried passing in an lvalue, it will reject the input unless you add the "copyable" trait, so it ends up mitigating some hidden copies. |
|
Thanks for the blog post.