Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4480aa5

Browse files
committed
add slight clarification around why bitwise ops are less useful in clojure
1 parent eac4650 commit 4480aa5

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

primitive-data/math/bitwise-operations/bitwise-operations.asciidoc

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ You need to perform bitwise operations on numbers.
88

99
==== Solution
1010

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-+.
1516

1617
One place bitwise operations really shine is in compressing a large
1718
number of binary flags into a single value.

0 commit comments

Comments
 (0)