12#include "../utility/utility.hpp"
13#include "../macros.hpp"
20namespace hi {
inline namespace v1 {
27 using char_type = char;
29 [[nodiscard]]
constexpr std::endian guess_endian(
void const *ptr,
size_t size, std::endian endian)
const noexcept
31 return std::endian::native;
34 template<
typename It,
typename EndIt>
43 return {0xfffd,
false};
49 hi_axiom(code_point < 0x11'0000);
50 hi_axiom(not(code_point >= 0xd800 and code_point < 0xe000));
52 if (code_point < 0x80) {
53 return {uint8_t{1},
true};
56 return {uint8_t{1},
false};
61 constexpr void write(
char32_t code_point, It& dst)
const noexcept
63 hi_axiom(code_point < 0x11'0000);
64 hi_axiom(not(code_point >= 0xd800 and code_point < 0xe000));
66 if (code_point < 0x80) {
74#if defined(HI_HAS_SSE2)
76 hi_force_inline __m128i read_ascii_chunk16(It it)
const noexcept
78 return _mm_loadu_si128(
reinterpret_cast<__m128i
const *
>(
std::addressof(*it)));
82 hi_force_inline
void write_ascii_chunk16(__m128i chunk, It dst)
const noexcept
84 _mm_storeu_si128(
reinterpret_cast<__m128i *
>(
std::addressof(*dst)), chunk);
Definition of the char_converter<From,To> functor.
@ read
Allow read access to a file.
Definition access_mode.hpp:18
@ write
Allow write access to a file.
Definition access_mode.hpp:19
geometry/margins.hpp
Definition lookahead_iterator.hpp:5
The HikoGUI API version 1.
Definition lookahead_iterator.hpp:6
constexpr Out char_cast(In rhs) noexcept
Cast a character.
Definition cast.hpp:550
Character encoder/decoder template.
Definition char_converter.hpp:86