Coverage Report

Created: 2026-06-30 07:08

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/solidity/libsolutil/Views.h
Line
Count
Source
1
/*
2
  This file is part of solidity.
3
4
  solidity is free software: you can redistribute it and/or modify
5
  it under the terms of the GNU General Public License as published by
6
  the Free Software Foundation, either version 3 of the License, or
7
  (at your option) any later version.
8
9
  solidity is distributed in the hope that it will be useful,
10
  but WITHOUT ANY WARRANTY; without even the implied warranty of
11
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
  GNU General Public License for more details.
13
14
  You should have received a copy of the GNU General Public License
15
  along with solidity.  If not, see <http://www.gnu.org/licenses/>.
16
*/
17
// SPDX-License-Identifier: GPL-3.0
18
19
#pragma once
20
21
#include <range/v3/view/transform.hpp>
22
23
#include <liblangutil/Exceptions.h>
24
25
26
namespace solidity::util::views
27
{
28
29
static constexpr auto dereference = ranges::views::transform([](auto&& x) -> decltype(auto) { return *x; });
30
31
static constexpr auto dereferenceChecked = ranges::views::transform(
32
  [](auto&& x) -> decltype(auto)
33
346
  {
34
    solAssert(x, "");
35
346
    return *x;
36
346
  }
37
);
38
39
}