C/C++ API Reference
Loading...
Searching...
No Matches
pointer.h
1// Copyright 2023 The Pigweed Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License"); you may not
4// use this file except in compliance with the License. You may obtain a copy of
5// the License at
6//
7// https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12// License for the specific language governing permissions and limitations under
13// the License.
14#pragma once
15
16#include <utility>
17
18#include "pw_function/internal/static_invoker.h"
19
20namespace pw::function {
21
23
68template <typename FunctionType>
69constexpr auto GetFunctionPointer() {
70 return internal::StaticInvoker<
71 FunctionType,
72 decltype(&FunctionType::operator())>::InvokeWithContextLast;
73}
74
77template <typename FunctionType>
78constexpr auto GetFunctionPointer(const FunctionType&) {
79 return GetFunctionPointer<FunctionType>();
80}
81
84template <typename FunctionType>
86 return internal::StaticInvoker<
87 FunctionType,
88 decltype(&FunctionType::operator())>::InvokeWithContextFirst;
89}
90
93template <typename FunctionType>
94constexpr auto GetFunctionPointerContextFirst(const FunctionType&) {
95 return GetFunctionPointerContextFirst<FunctionType>();
96}
97
98} // namespace pw::function
constexpr auto GetFunctionPointerContextFirst()
Definition: pointer.h:85
constexpr auto GetFunctionPointer()
Definition: pointer.h:69