Skip to content

Commit

Permalink
Update bitset.js
Browse files Browse the repository at this point in the history
  • Loading branch information
infusion committed Nov 15, 2018
1 parent 1b4fa77 commit 61f37ee
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions bitset.js
Expand Up @@ -250,7 +250,7 @@
return (d[n] >>> ndx) & 1;
},
/**
* Creates the bitwise NOT of a set. The result is stored in-place.
* Creates the bitwise NOT of a set.
*
* Ex:
* bs1 = new BitSet(10);
Expand All @@ -272,7 +272,7 @@
return t;
},
/**
* Creates the bitwise AND of two sets. The result is stored in-place.
* Creates the bitwise AND of two sets.
*
* Ex:
* bs1 = new BitSet(10);
Expand Down Expand Up @@ -317,7 +317,7 @@
return T;
},
/**
* Creates the bitwise OR of two sets. The result is stored in-place.
* Creates the bitwise OR of two sets.
*
* Ex:
* bs1 = new BitSet(10);
Expand Down Expand Up @@ -355,7 +355,7 @@
return t;
},
/**
* Creates the bitwise XOR of two sets. The result is stored in-place.
* Creates the bitwise XOR of two sets.
*
* Ex:
* bs1 = new BitSet(10);
Expand Down Expand Up @@ -403,7 +403,7 @@
return t;
},
/**
* Creates the bitwise AND NOT (not confuse with NAND!) of two sets. The result is stored in-place.
* Creates the bitwise AND NOT (not confuse with NAND!) of two sets.
*
* Ex:
* bs1 = new BitSet(10);
Expand Down Expand Up @@ -581,7 +581,7 @@
/**
* Gets a list of set bits
*
* @returns {Array|number}
* @returns {Array}
*/
'toArray': Math['clz32'] ?
function() {
Expand Down

0 comments on commit 61f37ee

Please sign in to comment.