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

#include <format.h>

Inheritance diagram for core_format_specs:
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 core_format_specs ()
 
FMT_CONSTEXPR bool has (unsigned f) const
 

Public Attributes

int precision
 
uint_least8_t flags
 
char type
 

Detailed Description

Definition at line 1100 of file format.h.

Constructor & Destructor Documentation

FMT_CONSTEXPR core_format_specs::core_format_specs ( )
inline

Definition at line 1105 of file format.h.

1105 : precision(-1), flags(0), type(0) {}
uint_least8_t flags
Definition: format.h:1102

Member Function Documentation

FMT_CONSTEXPR bool core_format_specs::has ( unsigned  f) const
inline

Definition at line 1106 of file format.h.

1106 { return (flags & f) != 0; }
uint_least8_t flags
Definition: format.h:1102

Member Data Documentation

uint_least8_t core_format_specs::flags

Definition at line 1102 of file format.h.

int core_format_specs::precision

Definition at line 1101 of file format.h.

char core_format_specs::type

Definition at line 1103 of file format.h.


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