Direct-BT v3.3.0-1-gc2d430c
Direct-BT - Direct Bluetooth Programming.
|
Language functionality, programming and otherwise. More...
Classes | |
class | jau::lang::alphabet |
Base Alphabet Specification providing the alphabet for token_fsm. More... | |
class | jau::lang::ascii26_alphabet |
Case insensitive ASCII base 26 alphabet with ASCII code-point sorting order. More... | |
class | jau::lang::ascii69_alphabet |
Case insensitive ASCII base 69 alphabet with ASCII code-point sorting order. More... | |
class | jau::lang::ascii95_alphabet |
Full ASCII base 95 alphabet with ASCII code-point sorting order. More... | |
Typedefs | |
typedef code_point_t(* | jau::lang::alphabet::code_point_func) (const char c) noexcept |
typedef uint16_t | jau::lang::alphabet::code_point_t |
Unsigned int symbol for alphabet code-point type. More... | |
Functions | |
jau::lang::alphabet::alphabet (std::string _name, code_point_t _base, code_point_func _cpf) noexcept | |
jau::lang::ascii26_alphabet::ascii26_alphabet () noexcept | |
jau::lang::ascii69_alphabet::ascii69_alphabet () noexcept | |
jau::lang::ascii95_alphabet::ascii95_alphabet () noexcept | |
constexpr code_point_t | jau::lang::alphabet::base () const noexcept |
The fixed base used for this alphabet, i.e. More... | |
constexpr code_point_t | jau::lang::alphabet::code_point (const char c) const noexcept |
Returns the token of the given character or code_error if not element of this alphabet. More... | |
constexpr const std::string & | jau::lang::alphabet::name () const noexcept |
Human readable name for this alphabet instance. More... | |
bool | jau::lang::operator!= (const alphabet &lhs, const alphabet &rhs) noexcept |
bool | jau::lang::operator== (const alphabet &lhs, const alphabet &rhs) noexcept |
std::string | jau::lang::alphabet::to_string () const noexcept |
std::string | jau::lang::to_string (const alphabet &v) noexcept |
Variables | |
static constexpr const code_point_t | jau::lang::alphabet::code_error = std::numeric_limits<code_point_t>::max() |
token_error value, denoting an invalid alphabet code-point. More... | |
Language functionality, programming and otherwise.
Supported
endlicher automat
(EA)For serious applications w/ regular expressions and more, as well as a lex
C++ alternative to flex
, consider using Re-flex.
typedef uint16_t jau::lang::alphabet::code_point_t |
Unsigned int symbol for alphabet code-point type.
Definition at line 79 of file token_fsm.hpp.
|
noexcept |
Definition at line 86 of file token_fsm.hpp.
|
inlinenoexcept |
Definition at line 94 of file token_fsm.hpp.
|
inlineconstexprnoexcept |
Human readable name for this alphabet instance.
Definition at line 98 of file token_fsm.hpp.
|
inlineconstexprnoexcept |
The fixed base used for this alphabet, i.e.
number of token.
Definition at line 101 of file token_fsm.hpp.
|
inlineconstexprnoexcept |
Returns the token of the given character or code_error if not element of this alphabet.
Definition at line 104 of file token_fsm.hpp.
|
inlinenoexcept |
Definition at line 106 of file token_fsm.hpp.
|
inlinenoexcept |
Definition at line 115 of file token_fsm.hpp.
Definition at line 119 of file token_fsm.hpp.
|
inlinenoexcept |
Definition at line 144 of file token_fsm.hpp.
|
inlinenoexcept |
Definition at line 173 of file token_fsm.hpp.
|
inlinenoexcept |
Definition at line 200 of file token_fsm.hpp.
|
inlinestaticconstexpr |
token_error value, denoting an invalid alphabet code-point.
Definition at line 84 of file token_fsm.hpp.