Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
latin1_writer Struct Reference

Public Types

typedef uint8_t * value_type

Static Public Member Functions

static value_type low (value_type result, uint32_t ch)
static value_type high (value_type result, uint32_t ch)

Detailed Description

Definition at line 1615 of file pugixml.cc.

Member Typedef Documentation

◆ value_type

typedef uint8_t* latin1_writer::value_type

Definition at line 1617 of file pugixml.cc.

Member Function Documentation

◆ high()

value_type latin1_writer::high ( value_type result,
uint32_t ch )
inlinestatic

Definition at line 1626 of file pugixml.cc.

1627 {
1628 (void)ch;
1629
1630 *result = '?';
1631
1632 return result + 1;
1633 }

◆ low()

value_type latin1_writer::low ( value_type result,
uint32_t ch )
inlinestatic

Definition at line 1619 of file pugixml.cc.

1620 {
1621 *result = static_cast<uint8_t>(ch > 255 ? '?' : ch);
1622
1623 return result + 1;
1624 }

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