chunk/ostream: add params ostream operator
This commit is contained in:
parent
f2afa2a421
commit
7902ed93b8
@ -3,17 +3,30 @@
|
|||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
*
|
*
|
||||||
* Copyright 2019, Danny Robson <danny@nerdcruft.net>
|
* Copyright 2019-2020, Danny Robson <danny@nerdcruft.net>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ostream.hpp"
|
#include "ostream.hpp"
|
||||||
|
|
||||||
|
#include "params.hpp"
|
||||||
#include "region.hpp"
|
#include "region.hpp"
|
||||||
#include "match.hpp"
|
#include "match.hpp"
|
||||||
|
|
||||||
#include <ostream>
|
#include <ostream>
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
|
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
std::ostream&
|
||||||
|
emory::chunk::operator<< (std::ostream &os, params const &val)
|
||||||
|
{
|
||||||
|
return os << "{ bits: " << val.bits
|
||||||
|
<< ", window: " << val.window
|
||||||
|
<< ", minimum: " << val.minimum
|
||||||
|
<< " }";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
std::ostream&
|
std::ostream&
|
||||||
emory::chunk::operator<< (std::ostream &os, region const &val)
|
emory::chunk::operator<< (std::ostream &os, region const &val)
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
*
|
*
|
||||||
* Copyright 2019, Danny Robson <danny@nerdcruft.net>
|
* Copyright 2019-2020, Danny Robson <danny@nerdcruft.net>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
@ -14,6 +14,8 @@
|
|||||||
|
|
||||||
|
|
||||||
namespace emory::chunk {
|
namespace emory::chunk {
|
||||||
|
std::ostream& operator<< (std::ostream&, params const&);
|
||||||
|
|
||||||
std::ostream& operator<< (std::ostream &, region const &);
|
std::ostream& operator<< (std::ostream &, region const &);
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user