mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-16 15:14:13 +00:00
add sprout::string_ref
support conversion array-like container iterator to pointer
This commit is contained in:
parent
fa1d769bdf
commit
1ef8a6a63b
64 changed files with 1570 additions and 254 deletions
19
sprout/utility/string_ref/io.hpp
Normal file
19
sprout/utility/string_ref/io.hpp
Normal file
|
@ -0,0 +1,19 @@
|
|||
#ifndef SPROUT_UTILITY_STRING_IO_HPP
|
||||
#define SPROUT_UTILITY_STRING_IO_HPP
|
||||
|
||||
#include <ios>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/utility/string_ref/string_ref.hpp>
|
||||
|
||||
namespace sprout {
|
||||
//
|
||||
// operator<<
|
||||
//
|
||||
template<typename T, typename Traits, typename StreamTraits>
|
||||
inline std::basic_ostream<T, StreamTraits>&
|
||||
operator<<(std::basic_ostream<T, StreamTraits>& lhs, sprout::basic_string_ref<T, Traits> const& rhs) {
|
||||
return lhs << rhs.c_str();
|
||||
}
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_UTILITY_STRING_IO_HPP
|
Loading…
Add table
Add a link
Reference in a new issue