xtd 0.2.0
func.hpp
Go to the documentation of this file.
1
4#pragma once
5#include "delegate.hpp"
6
8namespace xtd {
26 template<class result_t, class ...arguments_t>
27 using func = xtd::delegate<result_t(arguments_t... arguments)>;
28}
Contains xtd::delegate <result_t(arguments_t...)> delegate.
xtd::delegate< result_t(arguments_t... arguments)> func
Represents a delegate that has variables parameters and returns a value of the type specified by the ...
Definition func.hpp:27
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10