mrdocs::isMoveAssignment

Check whether a function is a move assignment operator.

Synopsis

bool
isMoveAssignment(FunctionSymbol const& func);

Description

A move assignment operator is a non‐template operator= whose parameter is an rvalue reference to the possibly cv‐qualified record type ([class.copy.assign]).

Return Value

Whether func is a move assignment operator.

Parameters

Name

Description

func

The function to check.

Created with MrDocs