#include <delegate.h>
template<typename result_t, typename... arguments_t>
class xtd::delegate< result_t(arguments_t...)>
Represents a delegate, which is a data structure that refers to a static method or to a class instance && an instance method of that class.
- Namespace
- xtd
- Library
- xtd.core
- Examples
- The following example shows how to define a delegate named my Method delegate. Instances of this delegate are created for an instance method && a static method of the nested mySampleClass class. The delegate for the instance method requires an instance of mySampleClass. The mySampleClass instance is saved in a variable named mySC.
#include <xtd/xtd>
using namespace std;
}
public:
}
};
auto main()->int {
using example_function = delegate<void(const ustring&)>;
example_function
f = {instance, &::object::hello};
f = goodbye;
return 0;
}
|
| delegate ()=default |
| Initializes an empty delegate. More...
|
|
| delegate (const delegate &delegate) noexcept |
| Initializes a delegate that invokes the specified delegate instance. More...
|
|
| delegate (const function_t &function) noexcept |
| Initializes a delegate that invokes the specified instance method. More...
|
|
template<typename object1_t , typename object2_t > |
| delegate (const object1_t &object, result_t(object2_t::*method)() const) noexcept |
| Initializes a delegate that invokes the specified instance method on the specified class instance. More...
|
|
template<typename object1_t , typename object2_t > |
| delegate (const object1_t &object, result_t(object2_t::*method)()) noexcept |
| Initializes a delegate that invokes the specified instance method on the specified class instance. More...
|
|
|
result_t | operator() (arguments_t... arguments) const |
| invokes the method represented by the current delegate. More...
|
|
|
| object ()=default |
| Create a new instance of the ultimate base class object. More...
|
|
bool | equals (const object &obj) const noexcept |
| Determines whether the specified object is equal to the current object. More...
|
|
virtual size_t | get_hash_code () const noexcept |
| Serves as a hash function for a particular type. More...
|
|
template<typename object_t > |
std::unique_ptr< object_t > | memberwise_clone () const noexcept |
| Gets the type of the current instance. More...
|
|
virtual xtd::ustring | to_string () const noexcept |
| Returns a sxd::ustring that represents the current object. More...
|
|
virtual bool | equals (const delegate< result_t(arguments_t...)> &) const noexcept=0 |
| Indicates whether the current object is equal to another object of the same type. More...
|
|
static bool | equals (const object &object_a, const object &object_b) noexcept |
| Determines whether the specified object instances are considered equal. More...
|
|
static bool | reference_equals (const object &object_a, const object &object_b) noexcept |
| Determines whether the specified object instances are the same instance. More...
|
|
◆ function_t
template<typename result_t , typename... arguments_t>
using xtd::delegate< result_t(arguments_t...)>::function_t = std::function <result_t(arguments_t...)> |
◆ no_arguments_function_t
template<typename result_t , typename... arguments_t>
no_arguments_function_t pointer type
◆ delegate() [1/5]
template<typename result_t , typename... arguments_t>
xtd::delegate< result_t(arguments_t...)>::delegate |
( |
| ) |
|
|
default |
Initializes an empty delegate.
◆ delegate() [2/5]
template<typename result_t , typename... arguments_t>
xtd::delegate< result_t(arguments_t...)>::delegate |
( |
const delegate< result_t(arguments_t...)> & |
delegate | ) |
|
|
inlinenoexcept |
Initializes a delegate that invokes the specified delegate instance.
- Parameters
-
delegate | The delegate instance. |
◆ delegate() [3/5]
template<typename result_t , typename... arguments_t>
xtd::delegate< result_t(arguments_t...)>::delegate |
( |
const function_t & |
function | ) |
|
|
inlinenoexcept |
Initializes a delegate that invokes the specified instance method.
- Parameters
-
function | the method instance. |
◆ delegate() [4/5]
template<typename result_t , typename... arguments_t>
template<typename object1_t , typename object2_t >
xtd::delegate< result_t(arguments_t...)>::delegate |
( |
const object1_t & |
object, |
|
|
result_t(object2_t::*)() const |
method |
|
) |
| |
|
inlinenoexcept |
Initializes a delegate that invokes the specified instance method on the specified class instance.
- Parameters
-
object | the class instance. |
function | the method instance. |
◆ delegate() [5/5]
template<typename result_t , typename... arguments_t>
template<typename object1_t , typename object2_t >
xtd::delegate< result_t(arguments_t...)>::delegate |
( |
const object1_t & |
object, |
|
|
result_t(object2_t::*)() |
method |
|
) |
| |
|
inlinenoexcept |
Initializes a delegate that invokes the specified instance method on the specified class instance.
- Parameters
-
object | the class instance. |
function | the method instance. |
◆ combine() [1/2]
template<typename result_t , typename... arguments_t>
static delegate xtd::delegate< result_t(arguments_t...)>::combine |
( |
const std::vector< delegate< result_t(arguments_t...)> > & |
delegates | ) |
|
|
inlinestaticnoexcept |
Concatenates the invocation lists of an array of delegates.
- Parameters
-
delegates | The array of delegates to combine. |
- Returns
- Delegate A new delegate with an invocation list that concatenates the invocation lists of the delegates in the delegates array. Returns null if delegates is null, if delegates contains zero elements, || if every entry in delegates is null.
◆ combine() [2/2]
template<typename result_t , typename... arguments_t>
static delegate xtd::delegate< result_t(arguments_t...)>::combine |
( |
const delegate< result_t(arguments_t...)> & |
a, |
|
|
const delegate< result_t(arguments_t...)> & |
b |
|
) |
| |
|
inlinestaticnoexcept |
Concatenates the invocation lists of two delegates.
- Parameters
-
a | The delegate whose invocation list comes first. |
b | The delegate whose invocation list comes second. |
- Returns
- delegateType A new delegate with an invocation list that concatenates the invocation lists of a and b in that order. Returns a if b is null, returns b if a is a null reference, and returns a null reference if both a and b are null references.
◆ equals()
template<typename result_t , typename... arguments_t>
bool xtd::delegate< result_t(arguments_t...)>::equals |
( |
const delegate< result_t(arguments_t...)> & |
delegate | ) |
const |
|
inlineoverridenoexcept |
Determines whether this instance and another specified delegateType object have the same value.
- Parameters
-
value | The delegateType to compare. |
- Returns
- bool true if the value of this instance is the same as the value of value; otherwise, false.
◆ functions()
template<typename result_t , typename... arguments_t>
const std::vector<function_t>& xtd::delegate< result_t(arguments_t...)>::functions |
( |
| ) |
const |
|
inline |
Gets the delegates array.
- Returns
- The delegates array.
◆ invoke()
template<typename result_t , typename... arguments_t>
result_t xtd::delegate< result_t(arguments_t...)>::invoke |
( |
arguments_t... |
arguments | ) |
const |
|
inline |
invokes the method represented by the current delegate.
- Parameters
-
arguments | The parameter list. |
- Returns
- result_t The return value.
◆ is_empty()
template<typename result_t , typename... arguments_t>
bool xtd::delegate< result_t(arguments_t...)>::is_empty |
( |
| ) |
const |
|
inlinenoexcept |
Return if the delegate is empty.
- Returns
- bool Return true if delegate is empty; otherwise false.
◆ no_arguments_functions()
template<typename result_t , typename... arguments_t>
const std::vector<no_arguments_function_t>& xtd::delegate< result_t(arguments_t...)>::no_arguments_functions |
( |
| ) |
const |
|
inline |
Gets the no arguments delegates array.
- Returns
- The delegates array.
◆ operator()()
template<typename result_t , typename... arguments_t>
result_t xtd::delegate< result_t(arguments_t...)>::operator() |
( |
arguments_t... |
arguments | ) |
const |
|
inline |
invokes the method represented by the current delegate.
- Parameters
-
arguments | The parameter list. |
- Returns
- result_t The return value.
◆ remove()
template<typename result_t , typename... arguments_t>
static delegate xtd::delegate< result_t(arguments_t...)>::remove |
( |
const delegate< result_t(arguments_t...)> & |
source, |
|
|
const delegate< result_t(arguments_t...)> & |
value |
|
) |
| |
|
inlinestaticnoexcept |
removes the last occurrence of the invocation list of a delegate from the invocation list of another delegate.
- Parameters
-
source | The delegate from which to remove the invocation list of value. |
value | The delegate that supplies the invocation list to remove from the invocation list of source. |
- Returns
- delegate A new delegate with an invocation list formed by taking the invocation list of source and removing the last occurrence of the invocation list of value, if the invocation list of value is found within the invocation list of source. Returns source if value is null || if the invocation list of value is ! found within the invocation list of source. Returns a null reference if the invocation list of value is equal to the invocation list of source || if source is a null reference.
◆ remove_all()
template<typename result_t , typename... arguments_t>
static delegate xtd::delegate< result_t(arguments_t...)>::remove_all |
( |
const delegate< result_t(arguments_t...)> & |
source, |
|
|
const delegate< result_t(arguments_t...)> & |
value |
|
) |
| |
|
inlinestaticnoexcept |
removes all occurrences of the invocation list of a delegate from the invocation list of another delegate.
- Parameters
-
source | The delegate from which to remove the invocation list of value. |
value | The delegate that supplies the invocation list to remove from the invocation list of source. |
- Returns
- delegate A new delegate with an invocation list formed by taking the invocation list of source && removing all occurrences of the invocation list of value, if the invocation list of value is found within the invocation list of source. Returns source if value is null || if the invocation list of value is ! found within the invocation list of source. Returns a null reference if the invocation list of value is equal to the invocation list of source, if source contains only a series of invocation lists that are equal to the invocation list of value, || if source is a null reference.
◆ size()
template<typename result_t , typename... arguments_t>
size_t xtd::delegate< result_t(arguments_t...)>::size |
( |
| ) |
const |
|
inlinenoexcept |
Return the size of invocation list.
- Returns
- Return the size of invocation list.
The documentation for this class was generated from the following file: