-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall.html
More file actions
520 lines (433 loc) · 13.2 KB
/
all.html
File metadata and controls
520 lines (433 loc) · 13.2 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<!-- Mirrored from cppreference.com/cppbitset/all.html by HTTrack Website Copier/3.x [XR&CO'2004], Tue, 22 Jan 2008 06:25:40 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=iso-8859-1"><!-- /Added by HTTrack -->
<head>
<meta name="generator" content=
"HTML Tidy for Linux/x86 (vers 1 September 2005), see www.w3.org">
<title>C++ Bitsets</title>
<link href="../cppreference.css" rel="stylesheet" type="text/css">
<link href="../prettify.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../prettify.js"></script>
</head>
<body onload="prettyPrint()">
<table>
<tr>
<td>
<div class="body-content">
<div class="header-box">
<a href="../index-2.html">cppreference.com</a> > <a href=
"index.html">C++ Bitsets</a>
</div>
<div class="name-format">
any
</div>
<div class="syntax-name-format">
Syntax:
</div>
<pre class="syntax-box">
#include <bitset>
bool any();
</pre>
<p>The any() function returns true if any bit of the bitset is 1,
otherwise, it returns false.</p>
<div class="related-name-format">
Related topics:
</div>
<div class="related-content">
<a href="count.html">count</a><br>
<a href="none.html">none</a>
</div>
</div>
</td>
<script src="../../www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-2828341-1";
urchinTracker();
</script>
</tr>
</table>
</body>
<!-- Mirrored from cppreference.com/cppbitset/all.html by HTTrack Website Copier/3.x [XR&CO'2004], Tue, 22 Jan 2008 06:25:40 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=iso-8859-1"><!-- /Added by HTTrack -->
</html>
<hr>
<div class="name-format">
Bitset Operators
</div>
<div class="syntax-name-format">
Syntax:
</div>
<pre class="syntax-box">
#include <bitset>
!=, ==, &=, ^=, |=, ~, <<=, >>=, []
</pre>
<p>These operators all work with bitsets. They can be described as
follows:</p>
<ul>
<li>!= returns true if the two bitsets are not equal.</li>
<li>== returns true if the two bitsets are equal.</li>
<li>&= performs the AND operation on the two bitsets.</li>
<li>^= performs the XOR operation on the two bitsets.</li>
<li>|= performs the OR operation on the two bitsets.</li>
<li>~ reverses the bitset (same as calling flip())</li>
<li><<= shifts the bitset to the left</li>
<li>>>= shifts the bitset to the right</li>
<li>[x] returns a reference to the xth bit in the bitset.</li>
</ul>
<p>For example, the following code creates a bitset and shifts it to
the left 4 places:</p>
<pre class="prettyprint">
// create a bitset out of a number
bitset<8> bs2( (long) 131 );
cout << "bs2 is " << bs2 << endl;
// shift the bitset to the left by 4 digits
bs2 <<= 4;
cout << "now bs2 is " << bs2 << endl;
</pre>
<p>When the above code is run, it displays:</p>
<pre class="prettyprint">
bs2 is 10000011
now bs2 is 00110000
</pre>
</div>
</td>
<script src="../../www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-2828341-1";
urchinTracker();
</script>
</tr>
</table>
</body>
<!-- Mirrored from cppreference.com/cppbitset/all.html by HTTrack Website Copier/3.x [XR&CO'2004], Tue, 22 Jan 2008 06:25:40 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=iso-8859-1"><!-- /Added by HTTrack -->
</html>
<hr>
<div class="name-format">
Bitset Constructors
</div>
<div class="syntax-name-format">
Syntax:
</div>
<pre class="syntax-box">
#include <bitset>
bitset();
bitset( unsigned long val );
</pre>
<p>Bitsets can either be constructed with no arguments or with an
unsigned long number val that will be converted into binary and
inserted into the bitset. When creating bitsets, the number given in
the place of the template determines how long the bitset is.</p>
<p>For example, the following code creates two bitsets and displays
them:</p>
<pre class="prettyprint">
// create a bitset that is 8 bits long
bitset<8> bs;
// display that bitset
for( int i = (int) bs.size()-1; i >= 0; i-- ) {
cout << bs[i] << " ";
}
cout << endl;
// create a bitset out of a number
bitset<8> bs2( (long) 131 );
// display that bitset, too
for( int i = (int) bs2.size()-1; i >= 0; i-- ) {
cout << bs2[i] << " ";
}
cout << endl;
</pre>
</div>
</td>
<script src="../../www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-2828341-1";
urchinTracker();
</script>
</tr>
</table>
</body>
<!-- Mirrored from cppreference.com/cppbitset/all.html by HTTrack Website Copier/3.x [XR&CO'2004], Tue, 22 Jan 2008 06:25:40 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=iso-8859-1"><!-- /Added by HTTrack -->
</html>
<hr>
<div class="name-format">
count
</div>
<div class="syntax-name-format">
Syntax:
</div>
<pre class="syntax-box">
#include <bitset>
<strong>size_type</strong> count();
</pre>
<p>The function count() returns the number of bits that are set to 1
in the bitset.</p>
<div class="related-name-format">
Related topics:
</div>
<div class="related-content">
<a href="any.html">any</a>
</div>
</div>
</td>
<script src="../../www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-2828341-1";
urchinTracker();
</script>
</tr>
</table>
</body>
<!-- Mirrored from cppreference.com/cppbitset/all.html by HTTrack Website Copier/3.x [XR&CO'2004], Tue, 22 Jan 2008 06:25:40 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=iso-8859-1"><!-- /Added by HTTrack -->
</html>
<hr>
<div class="name-format">
flip
</div>
<div class="syntax-name-format">
Syntax:
</div>
<pre class="syntax-box">
#include <bitset>
bitset<N>& flip();
bitset<N>& flip( size_t pos );
</pre>
<p>The flip() function inverts all of the bits in the bitset, and
returns the bitset. If <em>pos</em> is specified, only the bit at
position <em>pos</em> is flipped.</p>
</div>
</td>
<script src="../../www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-2828341-1";
urchinTracker();
</script>
</tr>
</table>
</body>
<!-- Mirrored from cppreference.com/cppbitset/all.html by HTTrack Website Copier/3.x [XR&CO'2004], Tue, 22 Jan 2008 06:25:40 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=iso-8859-1"><!-- /Added by HTTrack -->
</html>
<hr>
<div class="name-format">
none
</div>
<div class="syntax-name-format">
Syntax:
</div>
<pre class="syntax-box">
#include <bitset>
bool none();
</pre>
<p>The none() function only returns true if none of the bits in the
bitset are set to 1.</p>
<div class="related-name-format">
Related topics:
</div>
<div class="related-content">
<a href="any.html">any</a>
</div>
</div>
</td>
<script src="../../www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-2828341-1";
urchinTracker();
</script>
</tr>
</table>
</body>
<!-- Mirrored from cppreference.com/cppbitset/all.html by HTTrack Website Copier/3.x [XR&CO'2004], Tue, 22 Jan 2008 06:25:40 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=iso-8859-1"><!-- /Added by HTTrack -->
</html>
<hr>
<div class="name-format">
reset
</div>
<div class="syntax-name-format">
Syntax:
</div>
<pre class="syntax-box">
#include <bitset>
bitset<N>& reset();
bitset<N>& reset( size_t pos );
</pre>
<p>The reset() function clears all of the bits in the bitset, and
returns the bitset. If <em>pos</em> is specified, then only the bit
at position <em>pos</em> is cleared.</p>
</div>
</td>
<script src="../../www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-2828341-1";
urchinTracker();
</script>
</tr>
</table>
</body>
<!-- Mirrored from cppreference.com/cppbitset/all.html by HTTrack Website Copier/3.x [XR&CO'2004], Tue, 22 Jan 2008 06:25:40 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=iso-8859-1"><!-- /Added by HTTrack -->
</html>
<hr>
<div class="name-format">
set
</div>
<div class="syntax-name-format">
Syntax:
</div>
<pre class="syntax-box">
#include <bitset>
bitset<N>& set();
bitset<N>& set( size_t pos, int val=1 );
</pre>
<p>The set() function sets all of the bits in the bitset, and returns
the bitset. If <em>pos</em> is specified, then only the bit at
position <em>pos</em> is set.</p>
</div>
</td>
<script src="../../www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-2828341-1";
urchinTracker();
</script>
</tr>
</table>
</body>
<!-- Mirrored from cppreference.com/cppbitset/all.html by HTTrack Website Copier/3.x [XR&CO'2004], Tue, 22 Jan 2008 06:25:40 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=iso-8859-1"><!-- /Added by HTTrack -->
</html>
<hr>
<div class="name-format">
size
</div>
<div class="syntax-name-format">
Syntax:
</div>
<pre class="syntax-box">
#include <bitset>
size_t size();
</pre>
<p>The size() function returns the number of bits that the bitset can
hold.</p>
</div>
</td>
<script src="../../www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-2828341-1";
urchinTracker();
</script>
</tr>
</table>
</body>
<!-- Mirrored from cppreference.com/cppbitset/all.html by HTTrack Website Copier/3.x [XR&CO'2004], Tue, 22 Jan 2008 06:25:40 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=iso-8859-1"><!-- /Added by HTTrack -->
</html>
<hr>
<div class="name-format">
test
</div>
<div class="syntax-name-format">
Syntax:
</div>
<pre class="syntax-box">
#include <bitset>
bool test( size_t pos );
</pre>
<p>The function test() returns the value of the bit at position
<em>pos</em>.</p>
</div>
</td>
<script src="../../www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-2828341-1";
urchinTracker();
</script>
</tr>
</table>
</body>
<!-- Mirrored from cppreference.com/cppbitset/all.html by HTTrack Website Copier/3.x [XR&CO'2004], Tue, 22 Jan 2008 06:25:40 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=iso-8859-1"><!-- /Added by HTTrack -->
</html>
<hr>
<div class="name-format">
to_string
</div>
<div class="syntax-name-format">
Syntax:
</div>
<pre class="syntax-box">
#include <bitset>
string to_string();
</pre>
<p>The to_string() function returns a string representation of the
bitset.</p>
<div class="related-name-format">
Related topics:
</div>
<div class="related-content">
<a href="to_ulong.html">to_ulong</a>
</div>
</div>
</td>
<script src="../../www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-2828341-1";
urchinTracker();
</script>
</tr>
</table>
</body>
<!-- Mirrored from cppreference.com/cppbitset/all.html by HTTrack Website Copier/3.x [XR&CO'2004], Tue, 22 Jan 2008 06:25:40 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=iso-8859-1"><!-- /Added by HTTrack -->
</html>
<hr>
<div class="name-format">
to_ulong
</div>
<div class="syntax-name-format">
Syntax:
</div>
<pre class="syntax-box">
#include <bitset>
unsigned long to_ulong();
</pre>
<p>The function to_ulong() returns the bitset, converted into an
unsigned long integer.</p>
<div class="related-name-format">
Related topics:
</div>
<div class="related-content">
<a href="to_string.html">to_string</a>
</div>
</div>
</td>
<script src="../../www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-2828341-1";
urchinTracker();
</script>
</tr>
</table>
</body>
<!-- Mirrored from cppreference.com/cppbitset/all.html by HTTrack Website Copier/3.x [XR&CO'2004], Tue, 22 Jan 2008 06:25:40 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=iso-8859-1"><!-- /Added by HTTrack -->
</html>
<hr>
</body>
<!-- Mirrored from cppreference.com/cppbitset/all.html by HTTrack Website Copier/3.x [XR&CO'2004], Tue, 22 Jan 2008 06:25:40 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=iso-8859-1"><!-- /Added by HTTrack -->
</html>