aboutsummaryrefslogtreecommitdiffstats
path: root/chilbert/SetBits.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-08-05 12:21:17 +0200
committerDavid Robillard <d@drobilla.net>2018-08-07 20:01:22 +0200
commita052d57243e00f0e0de15ed6b8d02e60cbd755fe (patch)
tree25b0f89ef776ff40898a1c17defb1e35d58a216e /chilbert/SetBits.hpp
parentc54f20a0cefcc24f32bf9a224bbbcfa9bb1cb3de (diff)
downloadchilbert-a052d57243e00f0e0de15ed6b8d02e60cbd755fe.tar.gz
chilbert-a052d57243e00f0e0de15ed6b8d02e60cbd755fe.tar.bz2
chilbert-a052d57243e00f0e0de15ed6b8d02e60cbd755fe.zip
Rename library "chilbert"
Diffstat (limited to 'chilbert/SetBits.hpp')
-rw-r--r--chilbert/SetBits.hpp39
1 files changed, 39 insertions, 0 deletions
diff --git a/chilbert/SetBits.hpp b/chilbert/SetBits.hpp
new file mode 100644
index 0000000..adca0a0
--- /dev/null
+++ b/chilbert/SetBits.hpp
@@ -0,0 +1,39 @@
+/*
+ Copyright (C) 2018 David Robillard <d@drobilla.net>
+ Copyright (C) 2006-2007 Chris Hamilton <chamilton@cs.dal.ca>
+
+ This program is free software: you can redistribute it and/or modify it under
+ the terms of the GNU General Public License as published by the Free Software
+ Foundation, either version 2 of the License, or (at your option) any later
+ version.
+
+ This program is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ details.
+
+ You should have received a copy of the GNU General Public License along with
+ this program. If not, see <https://www.gnu.org/licenses/>.
+*/
+
+#ifndef _SETBITS_HPP_
+#define _SETBITS_HPP_
+
+#include "chilbert/Operations.hpp"
+
+namespace chilbert {
+
+template <class H, class I>
+inline void setBits(H& h, // destination
+ const int n, // number of bits
+ const int i, // bit position
+ const I& w) // bits to place
+{
+ for (int j = 0; j < n; j++) {
+ setBit(h, i + j, testBit(w, j));
+ }
+}
+
+} // namespace chilbert
+
+#endif