mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 15:10:19 +00:00
43 lines
965 B
C++
43 lines
965 B
C++
/*
|
|
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/StringBuilder.h>
|
|
#include <AK/Utf32View.h>
|
|
|
|
namespace AK {
|
|
|
|
Optional<u32> Utf32CodePointIterator::peek(size_t offset) const
|
|
{
|
|
if (offset == 0) {
|
|
if (this->done())
|
|
return {};
|
|
return this->operator*();
|
|
}
|
|
|
|
auto new_iterator = *this;
|
|
for (size_t index = 0; index < offset; ++index) {
|
|
++new_iterator;
|
|
if (new_iterator.done())
|
|
return {};
|
|
}
|
|
|
|
return *new_iterator;
|
|
}
|
|
|
|
bool Utf32View::operator==(Utf32View const& other) const
|
|
{
|
|
ReadonlySpan<u32> code_points { m_code_points, m_length };
|
|
ReadonlySpan<u32> other_code_points { other.m_code_points, other.m_length };
|
|
|
|
return code_points == other_code_points;
|
|
}
|
|
|
|
ErrorOr<void> Formatter<Utf32View>::format(FormatBuilder& builder, Utf32View const& string)
|
|
{
|
|
return builder.builder().try_append(string);
|
|
}
|
|
|
|
}
|