Sha256: c7e7eadc5d42dfa26868dd1633bd1fb5d3d6da548407f711576206a8cf652fe0
Contents?: true
Size: 565 Bytes
Versions: 7
Compression:
Stored size: 565 Bytes
Contents
#include <any> #include <string> namespace Rice { inline Return& Return::takeOwnership() { this->isOwner_ = true; return *this; } inline bool Return::isOwner() { return this->isOwner_; } inline Return& Return::setValue() { this->isValue_ = true; return *this; } inline bool Return::isValue() const { return this->isValue_; } inline Return& Return::keepAlive() { this->isKeepAlive_ = true; return *this; } inline bool Return::isKeepAlive() const { return this->isKeepAlive_; } } // Rice
Version data entries
7 entries across 7 versions & 1 rubygems