File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
primitive-data/math/bitwise-operations Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -8,10 +8,11 @@ You need to perform bitwise operations on numbers.
8
8
9
9
==== Solution
10
10
11
- Bitwise operations aren't quite as useful in Clojure as they are in
12
- systems languages like C or C\++, but the techniques learned in those
13
- systems languages can still be useful. Clojure exposes a number of
14
- bitwise operations in its core namespace, all prefixed with +bit-+.
11
+ Bitwise operations aren't quite as commonly used in high-level
12
+ languages (like Clojure) as they are in systems languages like C or
13
+ C\++, but the techniques learned in those systems languages can still
14
+ be useful. Clojure exposes a number of bitwise operations in its core
15
+ namespace, all prefixed with +bit-+.
15
16
16
17
One place bitwise operations really shine is in compressing a large
17
18
number of binary flags into a single value.
You can’t perform that action at this time.
0 commit comments