• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

openmc-dev / openmc / 15542373011

09 Jun 2025 07:02PM UTC coverage: 85.098% (-0.1%) from 85.2%
15542373011

Pull #3402

github

web-flow
Merge f0ae3624c into 7fda3eb84
Pull Request #3402: Add transformation boundary condition

74 of 111 new or added lines in 4 files covered. (66.67%)

897 existing lines in 38 files now uncovered.

52390 of 61564 relevant lines covered (85.1%)

36484613.85 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/include/openmc/container_util.h
1
#ifndef OPENMC_CONTAINER_UTIL_H
2
#define OPENMC_CONTAINER_UTIL_H
3

4
#include <algorithm> // for find
5
#include <iterator>  // for begin, end
6

7
namespace openmc {
8

9
template<class C, class T>
10
inline bool contains(const C& v, const T& x)
11
{
UNCOV
12
  return std::end(v) != std::find(std::begin(v), std::end(v), x);
×
13
}
14

15
} // namespace openmc
16

17
#endif // OPENMC_CONTAINER_UTIL_H
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc