Public Member Functions | Static Public Member Functions | List of all members
internal::char_traits< wchar_t > Struct Template Reference

#include <format.h>

Public Member Functions

template<typename T >
int format_float (wchar_t *buf, std::size_t size, const wchar_t *format, int precision, T value)
 

Static Public Member Functions

template<typename T >
static FMT_API int format_float (wchar_t *buffer, std::size_t size, const wchar_t *format, int precision, T value)
 

Detailed Description

template<>
struct internal::char_traits< wchar_t >

Definition at line 570 of file format.h.

Member Function Documentation

template<typename T >
int internal::char_traits< wchar_t >::format_float ( wchar_t *  buf,
std::size_t  size,
const wchar_t *  format,
int  precision,
value 
)

Definition at line 253 of file format-inl.h.

255  {
256  return precision < 0 ?
257  FMT_SWPRINTF(buf, size, format, value) :
258  FMT_SWPRINTF(buf, size, format, precision, value);
259 }
decltype(auto) constexpr size(T &&obj)
ADL-aware version of std::size.
Definition: StdUtils.h:87
#define FMT_SWPRINTF
Definition: format-inl.h:85
const GenericPointer< typename T::ValueType > T2 value
Definition: pointer.h:1225
template<typename T >
static FMT_API int internal::char_traits< wchar_t >::format_float ( wchar_t *  buffer,
std::size_t  size,
const wchar_t *  format,
int  precision,
value 
)
static

The documentation for this struct was generated from the following files: