// Copyright 2021 gRPC authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #ifndef GRPC_SRC_CORE_LIB_PROMISE_MAP_H #define GRPC_SRC_CORE_LIB_PROMISE_MAP_H #include <grpc/support/port_platform.h> #include <stddef.h> #include <tuple> #include <type_traits> #include <utility> #include "src/core/lib/promise/detail/promise_like.h" #include "src/core/lib/promise/poll.h" namespace grpc_core { namespace promise_detail { // Implementation of mapping combinator - use this via the free function below! // Promise is the type of promise to poll on, Fn is a function that takes the // result of Promise and maps it to some new type. template <typename Promise, typename Fn> class Map { … }; } // namespace promise_detail // Mapping combinator. // Takes a promise, and a synchronous function to mutate its result, and // returns a promise. template <typename Promise, typename Fn> promise_detail::Map<Promise, Fn> Map(Promise promise, Fn fn) { … } // Callable that takes a tuple and returns one element template <size_t kElem> struct JustElem { … }; } // namespace grpc_core #endif // GRPC_SRC_CORE_LIB_PROMISE_MAP_H