// Returns the operator name surrounded by the expected whitespace for a tidy binary expression. constchar* operatorName() const;
// Returns the operator name without any surrounding whitespace.
std::string_view tightOperatorName() const;
// Returns true if op is `=` or any compound-assignment operator (`+=`, `-=`, etc.) bool isAssignment() const;
// Returns true if op is any compound-assignment operator (`+=`, `-=`, etc.) but false for `=` bool isCompoundAssignment() const;
// Given a compound-assignment operator, returns the non-assignment version of the operator // (e.g. `+=` becomes `+`) Operator removeAssignment() const;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.