Skip to content

Avoid useless vector coping by move semantic and using referenceness qualifier #95

Description

@xDimon

For example:

const std::vector<uint8_t> &BlaBla::toBuffer() const {
return data_;
}

If we use it to make BlaBla and get std::vector<uint8_t> from that and that all.

std::vector<uint8_t> vec = BlaBla().toBuffer(); // <= copy here

Will be better to use ref-qualifier to move data from sigle-used temp object:

const std::vector<uint8_t> &BlaBla::toBuffer() const & { // <= method for case of usual objectreturn data_;
}
std::vector<uint8_t> BlaBla::toBuffer() const && { // <= method for case of temp objectreturnstd::move(data_);
}
std::vector<uint8_t> &BlaBla::asBuffer() { // <= method to access internal vectorreturn data_;
}
const std::vector<uint8_t> &BlaBla::asBuffer() const { // <= method to RO-access internal vectorreturn data_;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions