BDE 4.14.0 Production release
Loading...
Searching...
No Matches
bslx::TypeCode Struct Reference

#include <bslx_typecode.h>

Public Types

enum  Enum {
  e_INT8 = k_OFFSET + 0 , e_UINT8 = k_OFFSET + 1 , e_INT16 = k_OFFSET + 2 , e_UINT16 = k_OFFSET + 3 ,
  e_INT24 = k_OFFSET + 4 , e_UINT24 = k_OFFSET + 5 , e_INT32 = k_OFFSET + 6 , e_UINT32 = k_OFFSET + 7 ,
  e_INT40 = k_OFFSET + 8 , e_UINT40 = k_OFFSET + 9 , e_INT48 = k_OFFSET + 10 , e_UINT48 = k_OFFSET + 11 ,
  e_INT56 = k_OFFSET + 12 , e_UINT56 = k_OFFSET + 13 , e_INT64 = k_OFFSET + 14 , e_UINT64 = k_OFFSET + 15 ,
  e_FLOAT32 = k_OFFSET + 16 , e_FLOAT64 = k_OFFSET + 17 , e_INVALID = k_OFFSET + 18
}
 

Static Public Member Functions

static bsl::ostream & print (bsl::ostream &stream, TypeCode::Enum value, int level=0, int spacesPerLevel=4)
 
static const char * toAscii (TypeCode::Enum value)
 

Detailed Description

This struct provides a namespace for enumerating the set of fundamental types supported within bslx. See Enum in the TYPES sub-section for details.

Member Enumeration Documentation

◆ Enum

Enumerator
e_INT8 
e_UINT8 
e_INT16 
e_UINT16 
e_INT24 
e_UINT24 
e_INT32 
e_UINT32 
e_INT40 
e_UINT40 
e_INT48 
e_UINT48 
e_INT56 
e_UINT56 
e_INT64 
e_UINT64 
e_FLOAT32 
e_FLOAT64 
e_INVALID 

Member Function Documentation

◆ print()

static bsl::ostream & bslx::TypeCode::print ( bsl::ostream &  stream,
TypeCode::Enum  value,
int  level = 0,
int  spacesPerLevel = 4 
)
static

Write the string representation of the specified enumeration value to the specified output stream, and return a reference to stream. Optionally specify an initial indentation level, whose absolute value is incremented recursively for nested objects. If level is specified, optionally specify spacesPerLevel, whose absolute value indicates the number of spaces per indentation level for this and all of its nested objects. If level is negative, suppress indentation of the first line. If spacesPerLevel is negative, format the entire output on one line, suppressing all but the initial indentation (as governed by level). See toAscii for what constitutes the string representation of a TypeCode::Enum value.

◆ toAscii()

static const char * bslx::TypeCode::toAscii ( TypeCode::Enum  value)
static

Return the non-modifiable string representation corresponding to the specified enumeration value, if it exists, and a unique (error) string otherwise. The string representation of value matches its corresponding enumerator name with the "e_" prefix elided. For example:

@ e_INT32
Definition bslx_typecode.h:169
static const char * toAscii(TypeCode::Enum value)

will print the following on standard output:

INT32

Note that specifying a value that does not match any of the enumerators will result in a string representation that is distinct from any of those corresponding to the enumerators, but is otherwise unspecified.


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