llvm::StringSwitch::StartsWithLower

Match if the subject starts with S (case-insensitive) and bind Value.

Synopsis

Declared in <llvm/ADT/StringSwitch.h>

StringSwitch&
StartsWithLower(
    StringLiteral S,
    T Value);

Return Value

This switch for further chaining.

Parameters

NameDescription
SPrefix string to compare against the subject.
ValueResult to bind when the subject starts with S.