blob: 04481d37602c3a04e9c40c40b57293dea32dea9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/////////////////////////////////////////////////////////////////////////////
// Copyright (c) Electronic Arts Inc. All rights reserved.
/////////////////////////////////////////////////////////////////////////////
#ifndef EASTL_INTERNAL_FUNCTION_HELP_H
#define EASTL_INTERNAL_FUNCTION_HELP_H
#if defined(EA_PRAGMA_ONCE_SUPPORTED)
#pragma once
#endif
#include <EASTL/internal/config.h>
#include <EASTL/type_traits.h>
namespace eastl
{
namespace internal
{
//////////////////////////////////////////////////////////////////////
// is_null
//
template <typename T>
bool is_null(const T&)
{
return false;
}
template <typename Result, typename... Arguments>
bool is_null(Result (*const& function_pointer)(Arguments...))
{
return function_pointer == nullptr;
}
template <typename Result, typename Class, typename... Arguments>
bool is_null(Result (Class::*const& function_pointer)(Arguments...))
{
return function_pointer == nullptr;
}
template <typename Result, typename Class, typename... Arguments>
bool is_null(Result (Class::*const& function_pointer)(Arguments...) const)
{
return function_pointer == nullptr;
}
} // namespace internal
} // namespace eastl
#endif // Header include guard
|