mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-26 11:30:36 +00:00
multiprecision_int is a wrapper around boost::multiprecision::cpp_int that adds no functionality. The intent is to allow forward declration; cpp_int is so complicated that just finding out what its true type is a difficult exercise, as it depends on many internal declarations. Because cpp_int uses expression templates, the implementation has to explicitly cast to the desired type in many places, otherwise the C++ compile is presented with too many choices, especially in conjunction with data_value (which can convert from many different types too).
38 lines
964 B
C++
38 lines
964 B
C++
/*
|
|
* Copyright (C) 2020 ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* This file is part of Scylla.
|
|
*
|
|
* Scylla is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Scylla is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Scylla. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
|
|
#include "multiprecision_int.hh"
|
|
#include <iostream>
|
|
|
|
namespace utils {
|
|
|
|
std::string multiprecision_int::str() const {
|
|
return _v.str();
|
|
}
|
|
|
|
std::ostream& operator<<(std::ostream& os, const multiprecision_int& x) {
|
|
return os << x._v;
|
|
}
|
|
|
|
}
|
|
|