mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-20 00:20:47 +00:00
25 lines
371 B
C++
25 lines
371 B
C++
/*
|
|
* Copyright (C) 2020-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
|
|
*/
|
|
|
|
|
|
#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;
|
|
}
|
|
|
|
}
|
|
|