Discussion about this post

User's avatar
Vlad's avatar

I feel like it's a bit of an artificial scenario. We would normally do:

```

DataHolder dataHolder = copy(src);

```

which should be as fast as (if not faster than):

```

DataHolder dataHolder;

copy(dataHolder, src);

```

Expand full comment
1 more comment...

No posts