LSST Applications g063fba187b+ea58ee1f2e,g0f08755f38+c959026f09,g12f32b3c4e+e8fc1d5a1e,g1653933729+a8ce1bb630,g168dd56ebc+a8ce1bb630,g1a0ca8cf93+2f198f2aa8,g28da252d5a+7e025d8f94,g2bbee38e9b+c076ca1133,g2bc492864f+c076ca1133,g3156d2b45e+41e33cbcdc,g347aa1857d+c076ca1133,g35bb328faa+a8ce1bb630,g3a166c0a6a+c076ca1133,g3e281a1b8c+b162652f75,g414038480c+6cfc39b08c,g41af890bb2+d4c324d475,g5fbc88fb19+17cd334064,g6b1c1869cb+878204452a,g781aacb6e4+a8ce1bb630,g7e767a00ed+7def0f636c,g80478fca09+a0d7f63753,g82479be7b0+60cf5d37e7,g8554a5dd34+0e332c04ee,g858d7b2824+c959026f09,g89c8672015+ff349045bf,g9125e01d80+a8ce1bb630,g9726552aa6+3a8748fa0c,ga5288a1d22+59736ba80c,gb58c049af0+d64f4d3760,gc28159a63d+c076ca1133,gcf0d15dbbd+efb7d8614d,gda3e153d99+c959026f09,gda6a2b7d83+efb7d8614d,gdaeeff99f8+1711a396fd,ge2409df99d+2c01d16122,ge79ae78c31+c076ca1133,gf0baf85859+50e8a91c63,gfb92a5be7c+c959026f09,w.2024.47
LSST Data Management Base Package
Loading...
Searching...
No Matches
hashCombine.h
Go to the documentation of this file.
1/*
2 * LSST Data Management System
3 * See COPYRIGHT file at the top of the source tree.
4 *
5 * This product includes software developed by the
6 * LSST Project (http://www.lsst.org/).
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the LSST License Statement and
19 * the GNU General Public License along with this program. If not,
20 * see <http://www.lsstcorp.org/LegalNotices/>.
21 */
22#ifndef LSST_CPPUTILS_HASH_COMBINE_H
23#define LSST_CPPUTILS_HASH_COMBINE_H
24
25#include <functional>
26
27namespace lsst {
28namespace cpputils {
29
35inline std::size_t hashCombine(std::size_t seed) noexcept { return seed; }
36
59// This implementation is provided by Matteo Italia, https://stackoverflow.com/a/38140932/834250
60// Algorithm described at https://stackoverflow.com/a/27952689
61// WARNING: should not be inline or constexpr; it can cause instantiation-order problems with std::hash<T>
62template <typename T, typename... Rest>
63std::size_t hashCombine(std::size_t seed, const T& value, Rest... rest) noexcept {
64 std::hash<T> hasher;
65 seed ^= hasher(value) + 0x9e3779b9 + (seed << 6) + (seed >> 2);
66 return hashCombine(seed, rest...);
67}
68
90// Note: not an overload of hashCombine to avoid ambiguity with hashCombine(size_t, T1, T2)
91// WARNING: should not be inline or constexpr; it can cause instantiation-order problems with std::hash<T>
92template <typename InputIterator>
93std::size_t hashIterable(std::size_t seed, InputIterator begin, InputIterator end) noexcept {
95 for (; begin != end; ++begin) {
96 result = hashCombine(result, *begin);
97 }
98 return result;
99}
100
101}
102namespace utils = cpputils;
103} // namespace lsst::cpputils
104
105#endif
py::object result
Definition _schema.cc:429
int end
std::size_t hashCombine(std::size_t seed) noexcept
Combine hashes.
Definition hashCombine.h:35
std::size_t hashIterable(std::size_t seed, InputIterator begin, InputIterator end) noexcept
Combine hashes in an iterable.
Definition hashCombine.h:93