ASCII encoding.
More...
#include <encodings.h>
|
template<typename OutputStream > |
static void | Encode (OutputStream &os, unsigned codepoint) |
|
template<typename OutputStream > |
static void | EncodeUnsafe (OutputStream &os, unsigned codepoint) |
|
template<typename InputStream > |
static bool | Decode (InputStream &is, unsigned *codepoint) |
|
template<typename InputStream , typename OutputStream > |
static bool | Validate (InputStream &is, OutputStream &os) |
|
template<typename InputByteStream > |
static CharType | TakeBOM (InputByteStream &is) |
|
template<typename InputByteStream > |
static Ch | Take (InputByteStream &is) |
|
template<typename OutputByteStream > |
static void | PutBOM (OutputByteStream &os) |
|
template<typename OutputByteStream > |
static void | Put (OutputByteStream &os, Ch c) |
|
template<typename CharType = char>
struct ASCII< CharType >
http://en.wikipedia.org/wiki/ASCII
- Template Parameters
-
CharType | Code unit for storing 7-bit ASCII data. Default is char. |
- Note
- implements Encoding concept
Definition at line 542 of file encodings.h.
◆ Ch
template<typename CharType = char>
CharType ASCII< CharType >::Ch |
◆ anonymous enum
template<typename CharType = char>
◆ Decode()
template<typename CharType = char>
template<typename InputStream >
static bool ASCII< CharType >::Decode |
( |
InputStream & | is, |
|
|
unsigned * | codepoint ) |
|
inlinestatic |
Definition at line 560 of file encodings.h.
560 {
562 *codepoint = c;
563 return c <= 0X7F;
564 }
◆ Encode()
template<typename CharType = char>
template<typename OutputStream >
static void ASCII< CharType >::Encode |
( |
OutputStream & | os, |
|
|
unsigned | codepoint ) |
|
inlinestatic |
Definition at line 548 of file encodings.h.
548 {
550 os.Put(
static_cast<Ch>(codepoint & 0xFF));
551 }
#define RAPIDJSON_ASSERT(x)
Assertion.
◆ EncodeUnsafe()
template<typename CharType = char>
template<typename OutputStream >
static void ASCII< CharType >::EncodeUnsafe |
( |
OutputStream & | os, |
|
|
unsigned | codepoint ) |
|
inlinestatic |
Definition at line 554 of file encodings.h.
554 {
557 }
void PutUnsafe(Stream &stream, typename Stream::Ch c)
Write character to a stream, presuming buffer is reserved.
◆ Put()
template<typename CharType = char>
template<typename OutputByteStream >
static void ASCII< CharType >::Put |
( |
OutputByteStream & | os, |
|
|
Ch | c ) |
|
inlinestatic |
Definition at line 593 of file encodings.h.
593 {
595 os.Put(
static_cast<typename OutputByteStream::Ch
>(c));
596 }
#define RAPIDJSON_STATIC_ASSERT(x)
(Internal) macro to check for conditions at compile-time
◆ PutBOM()
template<typename CharType = char>
template<typename OutputByteStream >
static void ASCII< CharType >::PutBOM |
( |
OutputByteStream & | os | ) |
|
|
inlinestatic |
◆ Take()
template<typename CharType = char>
template<typename InputByteStream >
static Ch ASCII< CharType >::Take |
( |
InputByteStream & | is | ) |
|
|
inlinestatic |
Definition at line 581 of file encodings.h.
581 {
583 return static_cast<Ch>(is.Take());
584 }
◆ TakeBOM()
template<typename CharType = char>
template<typename InputByteStream >
static CharType ASCII< CharType >::TakeBOM |
( |
InputByteStream & | is | ) |
|
|
inlinestatic |
Definition at line 574 of file encodings.h.
574 {
577 return static_cast<Ch>(c);
578 }
static Ch Take(InputByteStream &is)
◆ Validate()
template<typename CharType = char>
template<typename InputStream , typename OutputStream >
static bool ASCII< CharType >::Validate |
( |
InputStream & | is, |
|
|
OutputStream & | os ) |
|
inlinestatic |
Definition at line 567 of file encodings.h.
567 {
569 os.Put(
static_cast<typename OutputStream::Ch
>(c));
570 return c <= 0x7F;
571 }
The documentation for this struct was generated from the following file:
- libraries/fc/include/fc/crypto/webauthn_json/include/rapidjson/encodings.h