Assignment operators
Declared in <llvm/Support/CommandLine.h>
Command line options are registered singletons and must not be copied.
opt&
operator=(opt const& Other) = delete;
» more...
Assign Val to this option and invoke the optional callback.
template<class T>
DataType&
operator=(T const& Val);
» more...
Move-assign Val to this option and invoke the optional callback.
template<class T>
DataType&
operator=(T&& Val);
» more...
A reference to the stored option value.
| Name | Description |
|---|---|
| Other | Unused source option. |
| Val | Value to assign. |