![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/include/llvm-10/llvm/ADT/ |
Upload File : |
//===-- llvm/ADT/SetOperations.h - Generic Set Operations -------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file defines generic set operations that may be used on set's of // different types, and different element types. // //===----------------------------------------------------------------------===// #ifndef LLVM_ADT_SETOPERATIONS_H #define LLVM_ADT_SETOPERATIONS_H namespace llvm { /// set_union(A, B) - Compute A := A u B, return whether A changed. /// template <class S1Ty, class S2Ty> bool set_union(S1Ty &S1, const S2Ty &S2) { bool Changed = false; for (typename S2Ty::const_iterator SI = S2.begin(), SE = S2.end(); SI != SE; ++SI) if (S1.insert(*SI).second) Changed = true; return Changed; } /// set_intersect(A, B) - Compute A := A ^ B /// Identical to set_intersection, except that it works on set<>'s and /// is nicer to use. Functionally, this iterates through S1, removing /// elements that are not contained in S2. /// template <class S1Ty, class S2Ty> void set_intersect(S1Ty &S1, const S2Ty &S2) { for (typename S1Ty::iterator I = S1.begin(); I != S1.end();) { const auto &E = *I; ++I; if (!S2.count(E)) S1.erase(E); // Erase element if not in S2 } } /// set_difference(A, B) - Return A - B /// template <class S1Ty, class S2Ty> S1Ty set_difference(const S1Ty &S1, const S2Ty &S2) { S1Ty Result; for (typename S1Ty::const_iterator SI = S1.begin(), SE = S1.end(); SI != SE; ++SI) if (!S2.count(*SI)) // if the element is not in set2 Result.insert(*SI); return Result; } /// set_subtract(A, B) - Compute A := A - B /// template <class S1Ty, class S2Ty> void set_subtract(S1Ty &S1, const S2Ty &S2) { for (typename S2Ty::const_iterator SI = S2.begin(), SE = S2.end(); SI != SE; ++SI) S1.erase(*SI); } } // End llvm namespace #endif