BlueBrain / libsonata

A python and C++ interface to the SONATA format
https://libsonata.readthedocs.io/en/stable/
GNU Lesser General Public License v3.0
11 stars 12 forks source link

Simplify `Selection::Selection`. #300

Closed 1uc closed 10 months ago

1uc commented 10 months ago

The modern pattern for constructors is to accept by value and move. This avoid duplication of the ctor at the (usually) negligible cost of at most one move.