luau-src-rs/luau/Ast/include/Luau/StringUtils.h

37 lines
1.3 KiB
C
Raw Normal View History

2022-02-23 07:12:51 -05:00
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
#pragma once
2022-11-10 19:36:44 -05:00
#include "Luau/Common.h"
2022-02-23 07:12:51 -05:00
#include <vector>
#include <string>
#include <stdarg.h>
namespace Luau
{
std::string format(const char* fmt, ...) LUAU_PRINTF_ATTR(1, 2);
std::string vformat(const char* fmt, va_list args);
void formatAppend(std::string& str, const char* fmt, ...) LUAU_PRINTF_ATTR(2, 3);
2022-05-06 20:10:54 -04:00
void vformatAppend(std::string& ret, const char* fmt, va_list args);
2022-02-23 07:12:51 -05:00
std::string join(const std::vector<std::string_view>& segments, std::string_view delimiter);
std::string join(const std::vector<std::string>& segments, std::string_view delimiter);
std::vector<std::string_view> split(std::string_view s, char delimiter);
// Computes the Damerau-Levenshtein distance of A and B.
// https://en.wikipedia.org/wiki/Damerau-Levenshtein_distance#Distance_with_adjacent_transpositions
size_t editDistance(std::string_view a, std::string_view b);
bool startsWith(std::string_view lhs, std::string_view rhs);
bool equalsLower(std::string_view lhs, std::string_view rhs);
size_t hashRange(const char* data, size_t size);
2022-09-17 17:10:30 -04:00
std::string escape(std::string_view s, bool escapeForInterpString = false);
2022-02-23 07:12:51 -05:00
bool isIdentifier(std::string_view s);
} // namespace Luau