/* * Copyright 2008-2021 NVIDIA Corporation * * 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. */ #pragma once #include #if defined(_CCCL_IMPLICIT_SYSTEM_HEADER_GCC) # pragma GCC system_header #elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_CLANG) # pragma clang system_header #elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_MSVC) # pragma system_header #endif // no system header #include #include #include #include #include #include THRUST_NAMESPACE_BEGIN template class transform_iterator; namespace detail { // Compute the iterator_adaptor instantiation to be used for transform_iterator template struct transform_iterator_base { private: // By default, dereferencing the iterator yields the same as the function. typedef typename thrust::detail::ia_dflt_help< Reference, thrust::detail::result_of_adaptable_function::type)>>::type reference; // To get the default for Value: remove cvref on the result type. using value_type = typename thrust::detail::ia_dflt_help>::type; public: typedef thrust::iterator_adaptor, Iterator, value_type, thrust::use_default // Leave the system alone //, thrust::use_default // Leave the traversal alone // use the Iterator's category to let any system iterators remain // random access even though transform_iterator's reference type // may not be a reference // XXX figure out why only iterators whose reference types are // true references are random access , typename thrust::iterator_traits::iterator_category, reference> type; }; } // namespace detail THRUST_NAMESPACE_END