All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | Private Attributes | List of all members
nlohmann::detail::output_vector_adapter< CharType > Class Template Reference

output adapter for byte vectors More...

#include <json.hpp>

Inheritance diagram for nlohmann::detail::output_vector_adapter< CharType >:
nlohmann::detail::output_adapter_protocol< CharType >

Public Member Functions

 output_vector_adapter (std::vector< CharType > &vec) noexcept
 
void write_character (CharType c) override
 
void write_characters (const CharType *s, std::size_t length) override
 
- Public Member Functions inherited from nlohmann::detail::output_adapter_protocol< CharType >
virtual ~output_adapter_protocol ()=default
 

Private Attributes

std::vector< CharType > & v
 

Detailed Description

template<typename CharType>
class nlohmann::detail::output_vector_adapter< CharType >

output adapter for byte vectors

Definition at line 11211 of file json.hpp.

Constructor & Destructor Documentation

template<typename CharType >
nlohmann::detail::output_vector_adapter< CharType >::output_vector_adapter ( std::vector< CharType > &  vec)
inlineexplicitnoexcept

Definition at line 11214 of file json.hpp.

11215  : v(vec)
11216  {}
std::vector< CharType > & v
Definition: json.hpp:11230

Member Function Documentation

template<typename CharType >
void nlohmann::detail::output_vector_adapter< CharType >::write_character ( CharType  c)
inlineoverridevirtual

Implements nlohmann::detail::output_adapter_protocol< CharType >.

Definition at line 11218 of file json.hpp.

11219  {
11220  v.push_back(c);
11221  }
std::vector< CharType > & v
Definition: json.hpp:11230
template<typename CharType >
void nlohmann::detail::output_vector_adapter< CharType >::write_characters ( const CharType *  s,
std::size_t  length 
)
inlineoverridevirtual

Implements nlohmann::detail::output_adapter_protocol< CharType >.

Definition at line 11224 of file json.hpp.

11225  {
11226  std::copy(s, s + length, std::back_inserter(v));
11227  }
std::vector< CharType > & v
Definition: json.hpp:11230
then echo File list $list not found else cat $list while read file do echo $file sed s
Definition: file_to_url.sh:60
T copy(T const &v)

Member Data Documentation

template<typename CharType >
std::vector<CharType>& nlohmann::detail::output_vector_adapter< CharType >::v
private

Definition at line 11230 of file json.hpp.


The documentation for this class was generated from the following file: