libime
inputbuffer.cpp
1 /*
2  * SPDX-FileCopyrightText: 2017-2017 CSSlayer <wengxt@gmail.com>
3  *
4  * SPDX-License-Identifier: LGPL-2.1-or-later
5  */
6 #include "inputbuffer.h"
7 #include <cstddef>
8 #include <string_view>
9 #include <fcitx-utils/utf8.h>
10 
11 namespace libime {
12 
13 std::string_view InputBuffer::at(size_t i) const { return viewAt(i); }
14 } // namespace libime