I want to make a custom char_traits
class for my own type. I have declared all the functions, but I am having some confusion regarding vague semantics given in the standard.
What are
fpos_type
,off_type
andstate_type
expected to do? Where are they required, if at all?Standard says to keep
traits::eof()
and valid code points separate and thus asks to use anint_type
which is bigger than thechar_type
. But can I then make mychar_type
as a signed number where I know valid code points are only in the non-negative range. It leaves me with negative values as possible values oftraits::eof()
. Or should it be thatint_type
should be a proper superset ofchar_type
so that nochar_type
can ever take the value ofeof()
? Being more to the point, can I makeint_type
andchar_type
to be same?
std::fpos
is a class that encapsulates file positioning semantics for file streams. It uses the current conversion state to identify file positions.off_type
andpos_type
are types defined instd::char_traits
that are types for offset types and position types respectively.pos_type
is used as arguments to seek functions and is the type returned from the tell functions. It is a type denoting absolute positions.off_type
is used in the overloads of the seek functions for specifying offsets from a provided file position.state_type
is also defined instd::char_traits
. It is used for specifying the conversion state of a multibyte sequence.You can look up all the requirements for these types in
[char.traits.require]
.This is the definition of
traits::int_type
-[char.traits.typedef]
This definition carries with it the implication that
int_type
merely be able to to represent values of typechar_type
, and also theeof()
value. It defines no further requirements for the type other than what types it aliases for certain specializations ofstd::char_traits