update
This commit is contained in:
commit
53f57381cc
@ -1,6 +1,4 @@
|
||||
#include <cstddef>
|
||||
#include <cstdlib>
|
||||
#include<tools.hpp>
|
||||
#include <tools.hpp>
|
||||
#include <string_view>
|
||||
|
||||
void print_help(){
|
||||
|
@ -42,7 +42,7 @@ namespace zt {
|
||||
};
|
||||
|
||||
template<typename ...Args>
|
||||
inline void print(std::ostream &os,const Args&...args){
|
||||
inline void raw_print(std::ostream &os,const Args&...args){
|
||||
std::stringstream ss;
|
||||
((ss<<args),...);
|
||||
os<<ss.str();
|
||||
@ -51,13 +51,13 @@ namespace zt {
|
||||
|
||||
template<typename ...Args>
|
||||
inline void print(const Args&...args){
|
||||
print(std::cin,args...);
|
||||
raw_print(std::cin,args...);
|
||||
return;
|
||||
}
|
||||
|
||||
template<typename ...Args>
|
||||
inline void eprint(const Args&...args){
|
||||
print(std::cerr,args...);
|
||||
raw_print(std::cerr,args...);
|
||||
return;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user