ΒΆstd::string convertToSnakeFromCamelCase(
    llvm::StringRef input)

Description

Converts a string from camel-case to snake-case by replacing all uppercase letters with '_' followed by the letter in lowercase, except if the uppercase letter is the first character of the string.

Declared at: llvm/include/llvm/ADT/StringExtras.h:382

Parameters

llvm::StringRef input