blob: 5d556179bac38f7c6ee9be610f58790fd25321ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/* -------------------------------------------
Copyright (C) 2024-2025, Amlal El Mahrouss, licensed under the Apache 2.0 license.
------------------------------------------- */
#pragma once
#include <CoreFoundation.fwrk/headers/Foundation.h>
namespace CF {
template <typename T>
class CFAtom final {
public:
explicit CFAtom() = default;
~CFAtom() = default;
public:
CFAtom& operator=(const CFAtom&) = delete;
CFAtom(const CFAtom&) = delete;
public:
T operator[](SizeT bit) { return (fArrayOfAtoms & (1 << bit)); }
void operator|(SizeT bit) { fArrayOfAtoms |= (1 << bit); }
friend Boolean operator==(CFAtom<T>& atomic, const T& idx) { return atomic[idx] == idx; }
friend Boolean operator!=(CFAtom<T>& atomic, const T& idx) { return atomic[idx] == idx; }
private:
T fArrayOfAtoms;
};
} // namespace CF
|