Visual Computing Library  devel
Loading...
Searching...
No Matches
bit_proxy.h
1/*****************************************************************************
2 * VCLib *
3 * Visual Computing Library *
4 * *
5 * Copyright(C) 2021-2025 *
6 * Visual Computing Lab *
7 * ISTI - Italian National Research Council *
8 * *
9 * All rights reserved. *
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the Mozilla Public License Version 2.0 as published *
13 * by the Mozilla Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 * This program is distributed in the hope that it will be useful, *
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
19 * Mozilla Public License Version 2.0 *
20 * (https://www.mozilla.org/en-US/MPL/2.0/) for more details. *
21 ****************************************************************************/
22
23#ifndef VCL_SPACE_CORE_BIT_SET_BIT_PROXY_H
24#define VCL_SPACE_CORE_BIT_SET_BIT_PROXY_H
25
26#include <vclib/base.h>
27
28#include <concepts>
29#include <functional>
30
31namespace vcl {
32
33// See: https://stackoverflow.com/a/10145050/5851101
34
41template<std::integral T>
43{
44 std::reference_wrapper<T> mMask;
45 const uint mIndex;
46
47public:
51 using UnderlyingType = T;
52
58 BitProxy(T& mask, uint index) : mMask(mask), mIndex(index) {}
59
60 operator bool() const { return mMask.get() & (1 << mIndex); }
61
62 void operator=(bool bit)
63 {
64 mMask.get() = (mMask.get() & ~(1 << mIndex)) | (bit << mIndex);
65 }
66
67 BitProxy& operator|=(bool bit)
68 {
69 mMask.get() |= (bit << mIndex);
70 return *this;
71 }
72
73 BitProxy& operator&=(bool bit)
74 {
75 mMask.get() &= ~(bit << mIndex);
76 return *this;
77 }
78
79 BitProxy& operator/=(bool bit)
80 {
81 mMask.get() ^= (bit << mIndex);
82 return *this;
83 }
84};
85
86/* Concepts */
87
98template<typename T>
99concept BitProxyConcept = std::derived_from< // same type or derived type
100 std::remove_cvref_t<T>,
101 BitProxy<typename RemoveRef<T>::UnderlyingType>>;
102
103} // namespace vcl
104
105#endif // VCL_SPACE_CORE_BIT_SET_BIT_PROXY_H
The BitProxy class allows to access to a bool reference from a bit saved in a mask,...
Definition bit_proxy.h:43
BitProxy(T &mask, uint index)
Constructs the BitProxy with the given mask and index.
Definition bit_proxy.h:58
T UnderlyingType
The type of the underlying integral value used to store the bits.
Definition bit_proxy.h:51
A class representing a box in N-dimensional space.
Definition box.h:46
A concept representing a BitProxy.
Definition bit_proxy.h:99