Sha256: b62cfad5ac654f1b15e12f24d54d15b95c8e57e29d5eb9d7715867b4c6407b89
Contents?: true
Size: 1.35 KB
Versions: 5
Compression:
Stored size: 1.35 KB
Contents
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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 _INTARRAYPAIRITERATOR_HPP_ #define _INTARRAYPAIRITERATOR_HPP_ namespace datasketches { template<typename A> class coupon_iterator: public std::iterator<std::input_iterator_tag, uint32_t> { public: coupon_iterator(const int* array, size_t array_slze, size_t index, bool all); coupon_iterator& operator++(); bool operator!=(const coupon_iterator& other) const; uint32_t operator*() const; private: const int* array; size_t array_size; size_t index; bool all; }; } #include "coupon_iterator-internal.hpp" #endif /* _INTARRAYPAIRITERATOR_HPP_ */
Version data entries
5 entries across 5 versions & 1 rubygems