Public Member Functions | Public Attributes | List of all members
align_spec Struct Reference

#include <format.h>

Inheritance diagram for align_spec:
basic_format_specs< Char > basic_format_specs< char_type > basic_format_specs< Context::char_type > basic_format_specs< ParseContext::char_type > internal::dynamic_format_specs< Char > internal::dynamic_format_specs< char_type >

Public Member Functions

FMT_CONSTEXPR align_spec ()
 
FMT_CONSTEXPR unsigned width () const
 
FMT_CONSTEXPR wchar_t fill () const
 
FMT_CONSTEXPR alignment align () const
 

Public Attributes

unsigned width_
 
wchar_t fill_
 
alignment align_
 

Detailed Description

Definition at line 1087 of file format.h.

Constructor & Destructor Documentation

FMT_CONSTEXPR align_spec::align_spec ( )
inline

Definition at line 1094 of file format.h.

1094 : width_(0), fill_(' '), align_(ALIGN_DEFAULT) {}
wchar_t fill_
Definition: format.h:1091
alignment align_
Definition: format.h:1092
unsigned width_
Definition: format.h:1088

Member Function Documentation

FMT_CONSTEXPR alignment align_spec::align ( ) const
inline

Definition at line 1097 of file format.h.

1097 { return align_; }
alignment align_
Definition: format.h:1092
FMT_CONSTEXPR wchar_t align_spec::fill ( ) const
inline

Definition at line 1096 of file format.h.

1096 { return fill_; }
wchar_t fill_
Definition: format.h:1091
FMT_CONSTEXPR unsigned align_spec::width ( ) const
inline

Definition at line 1095 of file format.h.

1095 { return width_; }
unsigned width_
Definition: format.h:1088

Member Data Documentation

alignment align_spec::align_

Definition at line 1092 of file format.h.

wchar_t align_spec::fill_

Definition at line 1091 of file format.h.

unsigned align_spec::width_

Definition at line 1088 of file format.h.


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