System::Func::Func constructor
Contents
[
Hide
]Func::Func() constructor
Default constructor that creates null-Func.
System::Func<Args>::Func()
See Also
- Class Func
- Namespace System
- Library Aspose.PUB for C++
Func::Func(T&&) constructor
Constructor that constructs Func object and assigns value (either actual callback or nullptr) to it.
template<typename T> System::Func<Args>::Func(T &&arg)
Parameter | Description |
---|---|
T | Argument type. |
Parameter | Type | Description |
---|---|---|
arg | T&& | Argument. |
See Also
- Class Func
- Namespace System
- Library Aspose.PUB for C++
Func::Func(const Func&) constructor
Copy constructor.
System::Func<Args>::Func(const Func &func)
Parameter | Type | Description |
---|---|---|
func | const Func& | Object to copy data from. |
See Also
- Class Func
- Class Func
- Namespace System
- Library Aspose.PUB for C++
Func::Func(Func&&) constructor
Move constructor.
System::Func<Args>::Func(Func &&func) noexcept
Parameter | Type | Description |
---|---|---|
func | Func&& | Object to move data from. |
See Also
- Class Func
- Class Func
- Namespace System
- Library Aspose.PUB for C++