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 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531
|
---
title: bitsets
---
# The `stdlib_bitsets` module
[TOC]
## Introduction
The `stdlib_bitsets` module implements bitset types. A bitset is a
compact representation of a sequence of `bits` binary values. It can
equivalently be considered as a sequence of logical values or as a
subset of the integers 0 ... `bits-1`. For example, the value `1110`
can be considered as defining the subset of integers [1, 2, 3].
The bits are indexed from 0 to `bits(bitset)-1`.
A bitset is used when space savings are critical in applications
that require a large number of closely related logical values.
It may also improve performance by reducing memory traffic. To
implement bitsets the module
defines three bitset types, multiple constants, a character string
literal that can be read to and from strings and formatted files, a
simple character string literal that can be read to and from strings,
assignments, procedures, methods, and operators. Note that the module
assumes two's complement integers, but all current Fortran 95 and later
processors use such integers.
Note that the module defines a number of "binary" procedures,
procedures with two bitset arguments. These arguments must be of the
same type and should have the same number of `bits`. For reasons of
performance the module does not enforce the `bits` constraint, but
failure to obey that constraint results in undefined behavior. This
undefined behavior includes undefined values for those bits that
exceed the defined number of `bits` in the smaller bitset. The
undefined behavior may also include a "segmentation fault" for
attempting to address bits in the smaller bitset, beyond the defined
number of `bits`. Other problems are also possible.
## The module's constants
The module defines several public integer constants, almost all
intended to serve as error codes in reporting problems through an
optional `stat` argument. One constant, `bits_kind` is
the integer kind value for indexing bits and reporting counts of
bits. The other constants that are error codes are summarized below:
|Error Code|Summary|
|----------|-------|
|`success`|No problems found|
|`alloc_fault`|Failure with a memory allocation|
|`array_size_invalid_error`|Attempt to define either negative bits or more than 64 bits in a `bitset_64`|
|`char_string_invalid_error`|Invalid character found in a character string|
|`char_string_too_large_error`|Character string was too large to be encoded in the bitset|
|`char_string_too_small_error`|Character string was too small to hold the expected number of bits|
|`index_invalid_error`|Index to a bitstring was less than zero or greater than the number of bits|
|`integer_overflow_error`|Attempt to define an integer value bigger than `huge(0_bits_kind)`|
|`read_failure`|Failure on a `read` statement|
|`eof_failure`|An unexpected "End-of-File" on a `read` statement|
|`write_failure`|Failure on a `write` statement|
## The `stdlib_bitsets` derived types
The `stdlib_bitsets` module defines three derived types,
`bitset_type`, `bitset_64`, and `bitset_large`. `bitset_type` is an abstract
type that serves as the ancestor of `bitset_64` and
`bitset_large`. `bitset_type` defines one method, `bits`, and all of its
other methods are deferred to its extensions. `bitset_64` is a bitset
that can handle up to 64 bits. `bitset_large` is a bitset that can handle
up `huge(0_bits_kind)` bits. All attributes of the bitset types are
private. The various types each define a sequence of binary values: 0
or 1. In some cases it is useful to associate a logical value, `test`,
for each element of the sequence, where `test` is `.true.` if the value
is 1 and `.false.` otherwise. The number of such values in an entity
of that type is to be termed, `bits`. The bits are ordered in terms of
position, that, in turn, is indexed from 0 to `bits-1`. `bitset_type` is
used only as a `class` to define entities that can be either a `bitset_64` or
a `bitset_large`. The syntax for using the types are:
`class(` [[stdlib_bitsets(module):bitset_type(type)]] `) :: variable`
`type(` [[stdlib_bitsets(module):bitset_64(type)]] `) :: variable`
and
`type(` [[stdlib_bitsets(module):bitset_large(type)]] `) :: variable`
## The *bitset-literal*
A bitset value may be represented as a *bitset-literal-constant*
character string in source code or as a *bitset-literal* in
formatted files and non-constant strings.
*bitset-literal-constant* is ' *bitset-literal* '
or " *bitset-literal* "
*bitset-literal* is *bitsize-literal* *binary-literal*
*bitsize-literal* is S *digit* [ *digit* ] ...
*binary-literal* is B *binary-digit* [ *binary-digit* ] ...
*digit* is 0
or 1
or 2
or 3
or 4
or 5
or 6
or 7
or 8
or 9
*binary-digit* is 0
or 1
The *bitset-literal* consists of two parts: a *bitsize-literal* and a
*binary-literal*. The sequence of decimal digits that is part of the
*bitsize-literal* is interpreted as the decimal value of `bits`.
The *binary-literal* value is interpreted as a sequence of bit
values and there must be as many binary digits in the literal as there
are `bits`. The sequence of binary digits are treated as if they were
an unsigned integer with the i-th digit corresponding to the `bits-i`
bit position.
## The *binary-literal*
In defining the *bitset-literal* we also defined a
*binary-literal*. While not suitable for file I/0, the
*binary-literal* is suitable for transfer to and from character
strings. In that case the length of the string is the number of bits
and all characters in the string must be either "0" or "1".
## Summary of the module's operations
The `stdlib_bitsets` module defines a number of operations:
* "unary" methods of class `bitset_type`,
* "binary" procedure overloads of type `bitset_64` or `bitset_large`,
* assignments, and
* "binary" comparison operators of type `bitset_64` or `bitset_large`.
Each category will be discussed separately.
### Table of the `bitset_type` methods
The `bitset_type` class has a number of methods. All except one, `bits`,
are deferred. The methods consist of all procedures with one argument
of class `bitset_type`. The procedures with two arguments of type
`bitset_64` or `bitset_large` are not methods and are
summarized in a separate table of procedures. The methods are
summarized below:
|Method name|Class|Summary|
|-----------|-----|-------|
|`all`|function|`.true.` if all bits are 1, `.false.` otherwise|
|`any`|function|`.true.` if any bits are 1, `.false.` otherwise|
|`bit_count`|function|returns the number of bits that are 1|
|`bits`|function|returns the number of bits in the bitset|
|`clear`|subroutine|sets a sequence of one or more bits to 0|
|`flip`|subroutine|flips the value of a sequence of one or more bits|
|`from_string`|subroutine|reads the bitset from a string treating it as a binary literal|
|`init`|subroutine|creates a new bitset of size `bits` with no bits set|
|`input`|subroutine|reads a bitset from an unformatted I/O unit|
|`none`|function|`.true.` if no bits are 1, `.false.` otherwise|
|`not`|subroutine|performs a logical `not` operation on all the bits|
|`output`|subroutine|writes a bitset to an unformatted I/O unit|
|`read_bitset`|subroutine|reads a bitset from a bitset literal in a character string or formatted I/O unit|
|`set`|subroutine|sets a sequence of one or more bits to 1|
|`test`|function|`.true.` if the bit at `pos` is 1, `.false.` otherwise|
|`to_string`|subroutine|represents the bitset as a binary literal|
|`value`|function|1 if the bit at `pos` is 1, 0 otherwise|
|`write_bitset`|subroutine|writes a bitset as a bitset literal to a character string or formatted I/O unit|
### Table of the non-member procedure overloads
The procedures with two arguments of type `bitset_large` or
`bitset_64` must have both arguments of the same known type which
prevents them from being methods. The bitwise "logical" procedures,
`and`, `and_not`, `or`, and `xor` also require that the two bitset
arguments have the same number of bits, otherwise the results are
undefined. These procedures are summarized in the following table:
|Procedure name|Class|Summary|
|--------------|-----|-------|
|`and`|elemental subroutine|Sets `self` to the bitwise `and` of the original bits in `self` and `set2`|
|`and_not`|elemental subroutine|Sets `self` to the bitwise `and` of the original bits in `self` and the negation of `set2`|
|`extract`|subroutine|creates a new bitset, `new`, from a range in `old`|
|`or`|elemental subroutine|Sets `self` to the bitwise `or` of the original bits in `self` and `set2`|
|`xor`|elemental subroutine|Sets `self` to the bitwise exclusive `or` of the original bits in `self` and `set2`|
### Assignments
The module uses the intrinsic assignment operation, `=`, to create a
duplicate of an original bitset. It additionally defines assignments to and
from rank one arrays of logical type of kinds `int8`, `int16`,
`int32`, and `int64`. In the assignment to and from logical arrays
array index, `i`, is mapped to bit position, `pos=i-1`, and `.true.`
is mapped to a set bit, and `.false.` is mapped to an unset bit.
#### Example
```fortran
{!example/bitsets/example_bitsets_assignment.f90!}
```
### Table of the non-member comparison operations
The comparison operators with two arguments of type `bitset_large` or
`bitset_64` must have both arguments of the same known type which
prevents them from being methods. The operands must also have the same
number of bits otherwise the results are undefined. These operators
are summarized in the following table:
|Operator|Description|
|--------|-----------|
|`==`, `.eq.`|`.true.` if all bits in `set1` and `set2` have the same value, `.false.` otherwise|
|`/=`, `.ne.`|`.true.` if any bits in `set1` and `set2` differ in value, `.false.` otherwise|
|`>`, `.gt.`|`.true.` if the bits in `set1` and `set2` differ in value and the highest order differing bit is 1 in `set1` and 0 in `set2`, `.false.` otherwise|
|`>=`, `.ge.`|`.true.` if the bits in `set1` and `set2` are the same or the highest order differing bit is 1 in `set1` and 0 in `set2`, `.false.` otherwise|
|`<`, `.lt.`|`.true.` if the bits in `set1` and `set2` differ in value and the highest order differing bit is 0 in `set1` and 1 in `set2`, `.false.` otherwise|
|`<=`, `.le.`|`.true.` if the bits in `set1` and `set2` are the same or the highest order differing bit is 0 in `set1` and 1 in `set2`, `.false.` otherwise|
## Specification of the `stdlib_bitsets` methods and procedures
### `all` - determine whether all bits are set in `self`
#### Status
Experimental
#### Description
Determines whether all bits are set to 1 in `self`.
#### Syntax
`result = self % ` [[bitset_type(type):all(bound)]] `()`
#### Class
Elemental function.
#### Argument
`self`: shall be a scalar expression of class `bitset_type`. It is an
`intent(in)` argument.
#### Result value
The result is a default logical scalar.
The result is `.true.` if all bits in `self` are set,
otherwise it is `.false.`.
#### Example
```fortran
{!example/bitsets/example_bitsets_all.f90!}
```
### `and` - bitwise `and` of the bits of two bitsets
#### Status
Experimental
#### Description
Sets the bits in `set1` to the bitwise `and` of the original bits in
`set1` and `set2`. Note that `set1` and `set2` must have the same
number of bits, otherwise the result is undefined.
#### Syntax
`call ` [[stdlib_bitsets(module):and(interface)]] `(set1, set2)`
#### Class
Elemental subroutine.
#### Arguments
`set1`: shall be a `bitset_64` or `bitset_large` scalar variable. It
is an `intent(inout)` argument. On return the values of the bits in
`set1` are the bitwise `and` of the original bits in `set1` with the
corresponding bits in `set2`.
`set2`: shall be a scalar expression of the same type as `set1`. It is
an `intent(in)` argument. Note that `set2` must also have the same
number of bits as `set1`.
#### Example
```fortran
{!example/bitsets/example_bitsets_and.f90!}
```
### `and_not` - Bitwise `and` of one bitset with the negation of another
#### Status
Experimental
#### Description
Sets the bits of `set1` to bitwise `and` of the bits of `set1` with
the bitwise negation of the corresponding bits of `set2`. Note that
`set1` and `set2` must have the same number of bits, otherwise the
result is undefined.
#### Syntax
`call ` [[stdlib_bitsets(module):and_not(interface)]] `(set1, set2)`
#### Class
Elemental subroutine.
#### Arguments
`set1`: shall be a scalar `bitset_64` or `bitset_large` variable. It
is an `intent(inout)` argument. On return the values of the bits in
`set1` are the bitwise `and` of the original bits in `set1` with the
corresponding negation of the bits in `set2`.
`set2`: shall be a scalar expression of the same type as `set1`. It is
an `intent(in)` argument. Note that it should also have the same
number of bits as `set1`, otherwise the result is undefined.
#### Example
```fortran
{!example/bitsets/example_bitsets_and_not.f90!}
```
### `any` - determine whether any bits are set
#### Status
Experimental
#### Description
Determines whether any bits are set in `self`.
#### Syntax
`result = self % ` [[bitset_type(type):any(bound)]] `()`
#### Class
Elemental function.
#### Argument
`self`: shall be a scalar expression of class `bitset_type`. It is an
`intent(in)` argument.
#### Result value
The result is a default logical scalar. The result is `.true.` if any bits in `self` are set, otherwise it
is `.false.`.
#### Example
```fortran
{!example/bitsets/example_bitsets_any.f90!}
```
### `bit_count` - return the number of bits that are set
#### Status
Experimental
#### Description
Returns the number of bits that are set to one in `self`.
#### Syntax
`result = self % ` [[bitset_type(type):bit_count(bound)]] ` ()`
#### Class
Elemental function.
#### Argument
`self`: shall be a scalar expression of class `bitset_type`. It is an
`intent(in)` argument.
#### Result value
The result is an integer scalar of kind `bits_kind`,
equal to the number of bits that are set in `self`.
#### Example
```fortran
{!example/bitsets/example_bitsets_bit_count.f90!}
```
#### `bits` - returns the number of bits
#### Status
Experimental
#### Description
Reports the number of bits in `self`.
#### Syntax
`result = self % ` [[bitset_type(type):bits(bound)]] ` ()`
#### Class
Elemental function.
#### Argument
`self`: shall be a scalar expression of class `bitset_type`. It is an
`intent(in)` argument.
#### Result value
The result is an integer scalar of kind `bits_kind`, equal to
the number of defined bits in `self`.
#### Example
```fortran
{!example/bitsets/example_bitsets_bits.f90!}
```
### `clear` - clears a sequence of one or more bits
#### Status
Experimental
#### Description
* If only `pos` is present, clears the bit with position `pos` in
`self`.
* If `start_pos` and `end_pos` are present with `end_pos >= start_pos`
clears the bits with positions from `start_pos` to `end_pos` in `self`.
* if `start_pos` and `end_pos` are present with `end_pos < start_pos`
`self` is unmodified.
Note: Positions outside the range 0 to `bits(set) -1` are ignored.
#### Syntax
`call self % ` [[bitset_type(type):clear(bound)]] `(pos)`
or
`call self % ` [[bitset_type(type):clear(bound)]] `(start_pos, end_pos)`
#### Class
Elemental subroutine
#### Arguments
`self`: shall be a scalar variable of class `bitset_type`. It is an
`intent(inout)` argument.
`pos`: shall be a scalar integer expression of kind `bits_kind`. It is
an `intent(in)` argument.
`start_pos`: shall be a scalar integer expression of kind
`bits_kind`. It is an `intent(in)` argument.
`end_pos`: shall be a scalar integer expression of kind
`bits_kind`. It is an `intent(in)` argument.
#### Example
```fortran
{!example/bitsets/example_bitsets_clear.f90!}
```
### `extract` - create a new bitset from a range in an old bitset
#### Status
Experimental
#### Description
Creates a new bitset, `new`, from a range, `start_pos` to `stop_pos`,
in bitset `old`. If `start_pos` is greater than `stop_pos` the new
bitset is empty. If `start_pos` is less than zero or `stop_pos` is
greater than `bits(old)-1` then if `status` is present it has the
value `index_invalid_error`, otherwise processing stops with an
informative message.
#### Syntax
`call ` [[stdlib_bitsets(module):extract(interface)]] `(new, old, start_pos, stop_pos, status )`
#### Class
Subroutine
#### Arguments
`new`: shall be a scalar `bitset_64` or `bitset_large` variable. It
is an `intent(out)` argument. It will be the new bitset.
`old`: shall be a scalar expression of the same type as `new`. It is
an `intent(in)` argument. It will be the source bitset.
`start_pos`: shall be a scalar integer expression of the kind
`bits_kind`. It is an `intent(in)` argument.
`stop_pos`: shall be a scalar integer expression of the kind
`bits_kind`. It is an `intent(in)` argument.
`status` (optional): shall be a scalar default integer variable. It is
an `intent(out)` argument. If present it shall have one of the values:
* `success` - no problems found
* `index_invalid_error` - `start_pos` was less than zero or `stop_pos`
was greater than `bits(old)-1`.
#### Example
```fortran
{!example/bitsets/example_bitsets_extract.f90!}
```
### `flip` - flip the values of a sequence of one or more bits
#### Status
Experimental
#### Description
Flip the values of a sequence of one or more bits.
* If only `pos` is present flip the bit value with position `pos` in
`self`.
* If `start_pos` and `end_pos` are present with `end_pos >= start_pos`
flip the bit values with positions from `start_pos` to `end_pos` in
`self`.
* If `end_pos < start_pos` then `self` is unmodified.
#### Syntax
`call self % ` [[bitset_type(type):flip(bound)]] ` (pos)`
or
`call self % ` [[bitset_type(type):flip(bound)]] ` (start_pos, end_pos)`
#### Class
Elemental subroutine.
#### Arguments
`self`: shall be a scalar class `bitset_type` variable It is an
`intent(inout)` argument.
`pos`: shall be a scalar integer expression of kind `bits_kind`. It is
an `intent(in)` argument.
`start_pos`: shall be a scalar integer expression of kind
`bits_kind`. It is an `intent(in)` argument.
`end_pos`: shall be a scalar integer expression of kind
`bits_kind`. It is an `intent(in)` argument.
#### Example
```fortran
{!example/bitsets/example_bitsets_flip.f90!}
```
### `from_string` - initializes a bitset from a binary literal
#### Status
Experimental
#### Description
Initializes the bitset `self` from `string`, treating `string` as a
binary literal.
#### Syntax
`call self % ` [[bitset_type(type):from_string(bound)]] `(string[, status])`
#### Class
Subroutine
#### Arguments
`self`: shall be a scalar class `bitset_type` variable. It is an
`intent(out)` argument.
`string`: shall be a scalar default character expression. It is an
`intent(in)` argument. It shall consist only of the characters "0",
and "1".
`status` (optional): shall be a scalar default integer variable. It is
an `intent(out)` argument. If present, on return its value shall be
one of the error codes defined in this module. If absent, and its
value would not have been `success`, then processing will stop with an
informative text as its stop code. It shall have one of the error
codes:
* `success` - if no problems were found,
* `alloc_fault` - if allocation of the bitset failed
* `char_string_too_large_error` - if `string` was too large, or
* `char_string_invalid_error` - if string had an invalid character.
#### Example
```fortran
{!example/bitsets/example_bitsets_from_string.f90!}
```
### `init` - `bitset_type` initialization routines
#### Status
Experimental
#### Description
`bitset_type` initialization routine.
#### Syntax
`call self % ` [[bitset_type(type):init(bound)]] ` (bits [, status])`
#### Class
Subroutine.
#### Arguments
`self`: shall be a scalar `bitset_64` or `bitset_large` variable. It
is an `intent(out)` argument.
`bits`: shall be a scalar integer expression of kind
`bits_kind`. It is an `intent(in)` argument that if present
specifies the number of bits in `set`. A negative value, or a value
greater than 64 if `self` is of type `bitset_64`, is an error.
`status` (optional): shall be a scalar default integer variable. It is
an `intent(out)` argument that, if present, returns an error code
indicating any problem found in processing `init`, and if absent and
an error was found result in stopping processing with an informative
stop code. It can have any of the following error codes:
* `success` - no problem found
* `alloc_fault` - `self` was of type `bitset_large` and memory
allocation failed
* `array_size_invalid_error` - bits was present with either a negative
value, or a value greater than 64 when `self` was of type
`bitset_64`.
#### Example
```fortran
{!example/bitsets/example_bitsets_init.f90!}
```
### `input` - reads a bitset from an unformatted file
#### Status
Experimental
#### Description
Reads a bitset from its binary representation in an unformatted
file.
#### Syntax
`call self % ` [[bitset_type(type):input(bound)]] ` (unit [, status])`
#### Class
Subroutine
#### Arguments
`self`: shall be a scalar variable of class `bitset_64` or
`bitset_large`. It is an `intent(out)` argument.
`unit`: shall be a scalar default integer expression. It is an
`intent(in)` argument. Its value must be that of a logical unit
number for an open unformatted file with `read` or `readwrite`
access positioned at the start of a bitset value written by a
`bitset_type` `output` subroutine by the same processor.
`status` (optional): shall be a scalar default integer variable. If
present its value shall be of one of the error codes defined in this
module. If absent and it would have had a value other than `success`
processing will stop with an informative stop code. Allowed error code
values for this `status` are:
* `success` - no problem found
* `alloc_fault` - `self` was of type `bitset_large` and allocation of
memory failed.
* `array_size_invalid_error` - if the number of bits read from `unit`
is either negative or greater than 64, if class of `self` is
`bitset_64`.
* `read_failure` - failure during a read statement
#### Example
```fortran
{!example/bitsets/example_bitsets_input.f90!}
```
### `none` - determines whether no bits are set
#### Status
Experimental
#### Description
Determines whether no bits are set in `self`.
#### Syntax
`result = self % ` [[bitset_type(type):none(bound)]] ` ()`
#### Class
Elemental function.
#### Argument
`self`: shall be a scalar expression of class `bitset_type`. It is an
`intent(in)` argument.
#### Result value
The result is a default logical scalar.
The result is `.true.` if no bits in `self` are set, otherwise it is
`.false.`.
#### Example
```fortran
{!example/bitsets/example_bitsets_none.f90!}
```
### `not` - Performs the logical complement on a bitset
#### Status
Experimental
#### Description
Performs the logical complement on the bits of `self`.
#### Syntax
`call self % ` [[bitset_type(type):not(bound)]] ` ()`
#### Class
Elemental subroutine.
#### Argument
`self` shall be a scalar variable of class `bitset_type`. It is an
`intent(inout)` argument. On return its bits shall be the logical
complement of their values on input.
#### Example
```fortran
{!example/bitsets/example_bitsets_not.f90!}
```
### `or` - Bitwise OR of the bits of two bitsets
#### Status
Experimental
#### Description
Replaces the original bits of `set1` with the bitwise `or` of those
bits with the bits of `set2`. Note `set1` and `set2` must have the
same number of bits, otherwise the result is undefined.
#### Syntax
`call ` [[stdlib_bitsets(module):or(interface)]] `(set1, set2)`
#### Class
Elemental subroutine.
#### Arguments
`set1`: shall be a scalar `bitset_64` or `bitset_large` variable. It
is an `intent(inout)` argument. On return the values of the bits in
`setf` are the bitwise `or` of the original bits in `set1` with the
corresponding bits in `set2`.
`set2`: shall be a scalar expression of the same type as `set1`. It is
an `intent(in)` argument. Note `bits(set2)` must equal `bits(set1)`
otherwise the results are undefined.
#### Example
```fortran
{!example/bitsets/example_bitsets_or.f90!}
```
### `output` - Writes a binary representation of a bitset to a file
#### Status
Experimental
#### Description
Writes a binary representation of a bitset to an unformatted file.
#### Syntax
`call self % ` [[bitset_type(type):output(bound)]] ` (unit[, status])`
#### Class
Subroutine.
#### Arguments
`self`: shall be a scalar expression of class `bitset_64` or
`bitset_large`. It is an `intent(in)` argument.
`unit`: shall be a scalar default integer expression. It is an
`intent(in)` argument. Its value must be that of an I/O unit number
for an open unformatted file with `write` or `readwrite` access.
`status` (optional): shall be a scalar default integer variable. It is
an `intent(out)` argument. If present on return it will have the value
of `success` or `write_failure`. If absent and it would not have the
value of `success` then processing will stop with an informative stop
code. The two code values have the meaning:
* `success` - no problem found
* `write_failure` - a failure occurred in a write statement.
#### Example
```fortran
{!example/bitsets/example_bitsets_output.f90!}
```
### `read_bitset` - initializes `self` with the value of a *bitset_literal*
#### Status
Experimental
#### Description
Reads a *bitset-literal* and initializes `self` with the corresponding
value.
#### Syntax
`call self % ` [[bitset_type(type):read_bitset(bound)]] `(string[, status])`
or
`call self % ` [[bitset_type(type):read_bitset(bound)]] `(unit[, advance, status])`
#### Class
Subroutine
#### Arguments
`self`: shall be a scalar variable of class `bitset_type`. It is an
`intent(out)` argument. Upon a successful return it is initialized with
the value of a *bitset-literal*.
`string` (optional): shall be a scalar default character
expression. It is an `intent(in)` argument. It will consist of a left
justified *bitset-literal*, terminated by either the end of the string
or a blank.
`unit` (optional): shall be a scalar default integer expression. It is
an `intent(in)` argument. Its value must be that of an I/O unit number
for an open formatted file with `read` or `readwrite` access
positioned at the start of a *bitset-literal*.
`advance` (optional): shall be a scalar default character
expression. It is an `intent(in)` argument. It is the `advance`
specifier for the final read of `unit`. If present it should have
the value `'yes'` or `'no'`. If absent it has the default value of
`'yes'`.
`status` (optional): shall be a scalar default integer variable. It is
an `intent(out)` argument. If present on return it shall have the
value of one of the error codes of this module. If absent and it would
not have had the value `success` processing will stop with a message
as its error code. The possible error codes are:
* `success` - no problems found;
* `alloc_fault` - if `self` is of class `bitset_large` and allocation
of the bits failed;
* `array_size_invalid_error` - if the *bitset-literal* has a bits
value greater than 64 and `self` is of class `bitset_64`;
* `char_string_invalid_error` - if the `bitset-literal` has an invalid
character;
* `char_string_too_small_error` - if `string` ends before all the bits
are read;
* `eof_failure` - if a `read` statement reached an end-of-file before
completing the read of the bitset literal,
* `integer_overflow_error` - if the *bitset-literal* has a `bits`
value larger than `huge(0_bits_kind)`; or
* `read_failure` - if a read statement failed.
#### Example
```fortran
{!example/bitsets/example_bitsets_read_bitset.f90!}
```
### `set` - sets a sequence of one or more bits to 1
#### Status
Experimental
#### Description
Sets a sequence of one or more bits in `self` to 1.
* If `start_pos` and `end_pos` are absent sets the bit at position
`pos` in `self` to 1.
* If `start_pos` and `end_pos` are present with `end_pos >= start_pos`
set the bits at positions from `start_pos` to `end_pos` in `self` to 1.
* If `start_pos` and `end_pos` are present with `end_pos < start_pos`
`self` is unchanged.
* Positions outside the range 0 to `bits(self)` are ignored.
#### Syntax
`call self % ` [[bitset_type(type):set(bound)]] ` (POS)`
or
`call self % ` [[bitset_type(type):set(bound)]] ` (START_POS, END_POS)`
#### Class
Elemental subroutine
#### Arguments
`self`: shall be a scalar variable of class `bitset_type`. It is an
`intent(inout)` argument.
`pos` (optional): shall be a scalar integer expression of kind
`bits_kind`. It is an `intent(in)` argument.
`start_pos` (optional): shall be a scalar integer expression of kind
`bits_kind`. It is an `intent(in)` argument.
`end_pos` (optional): shall be a scalar integer expression of kind
`bits_kind`. It is an `intent(in)` argument.
#### Example
```fortran
{!example/bitsets/example_bitsets_set.f90!}
```
### `test` - determine whether a bit is set
#### Status
Experimental
#### Descriptions
Determine whether the bit at position `pos` is set to 1 in `self`.
#### Syntax
`result = self % ` [[bitset_type(type):test(bound)]] `(pos)`
#### Class
Elemental function.
#### Arguments
`self`: shall be a scalar expression of class `bitset_type`. It is an
`intent(in)` argument.
`pos`: shall be a scalar integer expression of kind `bits_kind`. It is
an `intent(in)` argument.
#### Result value
The result is a default logical scalar.
The result is `.true.` if the bit at `pos` in `self` is set,
otherwise it is `.false.`. If `pos` is outside the range
`0... bits(self)-1` the result is `.false.`.
#### Example
```fortran
{!example/bitsets/example_bitsets_test.f90!}
```
### `to_string` - represent a bitset as a binary literal
### Status
Experimental
#### Description
Represents the value of `self` as a binary literal in `string`.
#### Syntax
`call self % ` [[bitset_type(type):to_string(bound)]] `(string[, status])`
#### Class
Subroutine
#### Arguments
`self`: shall be a scalar expression of class `bitset_type`. It is an
`intent(in)` argument.
`string`: shall be a scalar default character variable of allocatable
length. It is an `intent(out)` argument. On return it shall have a
*binary-literal* representation of the bitset `self`.
`status` (optional): shall be a scalar default integer variable. It is
an `intent(out)` argument. If present it shall have either the value
`success` or `alloc_fault`. If absent and it would have had the value
`alloc_fault` then processing will stop with an informative test as
the stop code. The values have the following meanings:
`success` - no problem found.
`alloc_fault` - allocation of `string` failed.
#### Example
```fortran
{!example/bitsets/example_bitsets_to_string.f90!}
```
### `value` - determine the value of a bit
#### Status
Experimental
#### Description
Determines the value of the bit at position, `pos`, in `self`.
#### Syntax
`result = self % ` [[bitset_type(type):value(bound)]] `(pos)`
#### Class
Elemental function.
#### Arguments
`self`: shall be a scalar expression of class `bitset_type`. It is an
`intent(in)` argument.
`pos`: shall be a scalar integer expression of kind `bits_kind`. It is
an `intent(in)` argument.
#### Result value
The result is a default integer scalar.
The result is one if the bit at `pos` in `self` is set, otherwise it
is zero. If `pos` is outside the range `0... bits(set)-1` the result
is zero.
#### Example
```fortran
{!example/bitsets/example_bitsets_value.f90!}
```
### `write_bitset` - writes a *bitset-literal*
#### Status
Experimental
#### Description
Writes a *bitset-literal* representing `self`'s current value to a
character string or formatted file.
#### Syntax
`call self % ` [[bitset_type(type):write_bitset(bound)]] `(string[, status])`
or
`call self % ` [[bitset_type(type):write_bitset(bound)]] ` (unit[, advance, status])`
#### Class
Subroutine
#### Arguments
`self`: shall be a scalar expression of class `bitset_type`. It is an
`intent(in)` argument.
`string` (optional): shall be a scalar default character variable of
allocatable length. It is an `intent(out)` argument.
`unit` (optional): shall be a scalar default logical expression. It is
an `intent(in)` argument. Its value must be that of a I/O unit number
for an open formatted file with `write` or `readwrite` access.
`advance` (optional): shall be a scalar default character
expression. It is an `intent(in)` argument. It is the `advance`
specifier for the write to `unit`. If present it must have the value
`'yes'` or `'no'`. It has the default value of `'yes'`.
* if `advance` is not present or is present with a value of `'no'`
then the bitset's *bitset-literal* is written to `unit`
followed by a blank, and the current record is not advanced.
* If `advance` is present with a value of `'yes'` then the
bitset's *bitset-literal* is written to `unit` and the
record is immediately advanced.
`status` (optional): shall be a scalar default integer variable. It is
an `intent(out)` argument. If present on return it shall have the
value of one of the module's error codes. If absent and a problem was
found processing will stop with an informative stop code. It may have
the following error code values:
* `success` - no problem was found
* `alloc_fault` - allocation of the string failed
* `write_failure` - the `write` to the `unit` failed
#### Example
```fortran
{!example/bitsets/example_bitsets_write_bitset.f90!}
```
### `xor` - bitwise exclusive `or`
#### Status
Experimental
#### Description
Replaces `set1`'s bitset with the bitwise exclusive `or` of the
original bits of `set1` and `set2`. Note `set1` and `set2` must have
the samee number of bits, otherwise the result is undefined.
#### Syntax
`result = ` [[stdlib_bitsets(module):xor(interface)]] ` (set1, set2)`
#### Class
Elemental subroutine
#### Arguments
`set1`: shall be a scalar `bitset_64` or `bitset_large` variable. It
is an `intent(inout)` argument. On return the values of the bits in
`set1` are the bitwise exclusive `or` of the original bits in `set1`
with the corresponding bits in `set2`.
`set2` shall be a scalar expression of the same type as `set1`. It is
an `intent(in)` argument. Note `set1` and `set2` must have the
samee number of bits, otherwise the result is undefined.
#### Example
```fortran
{!example/bitsets/example_bitsets_xor.f90!}
```
## Specification of the `stdlib_bitsets` operators
### `==` - compare two bitsets to determine whether the bits have the same value
#### Status
Experimental
#### Description
Returns `.true.` if all bits in `set1` and `set2` have the same value,
`.false.` otherwise.
#### Syntax
`result = set1 ` [[stdlib_bitsets(module):==(interface)]] ` set2`
or
`result = set1 .EQ. set2`
#### Class
Elemental operator
#### Arguments
`set1`: shall be a scalar `bitset_64` or `bitset_large` expression. It
is an `intent(in)` argument.
`set2`: shall be a scalar expression of the same type as `self`. It
will have the same number of bits as `set1`. It is an `intent(in)`
argument.
#### Result value
The result is a default logical scalar.
The result is `.true.` if the bits in both bitsets are set
to the same value, otherwise the result is `.false.`.
#### Example
```fortran
{!example/bitsets/example_bitsets_equality.f90!}
```
### `/=` - compare two bitsets to determine whether any bits differ in value
#### Status
Experimental
#### Description
Returns `.true.` if any bits in `self` and `set2` differ in value,
`.false.` otherwise.
#### Syntax
`result = set1 ` [[stdlib_bitsets(module):/=(interface)]] ` set2`
or
`result = set1 .NE. set2`
#### Class
Elemental function
#### Arguments
`set1`: shall be a scalar `bitset_64` or `bitset_large` expression. It
is an `intent(in)` argument.
`set2`: shall be a scalar expression of the same type as `self`. It
will have the same number of bits as `set1`. It is an `intent(in)`
argument.
#### Result value
The result is a default logical scalar.
The result is `.true.` if any bits in both bitsets differ, otherwise
the result is `.false.`.
#### Example
```fortran
{!example/bitsets/example_bitsets_inequality.f90!}
```
### `>=` - compare two bitsets to determine whether the first is greater than or equal to the second
#### Status
Experimental
#### Description
Returns `.true.` if the bits in `set1` and `set2` are the same or the
highest order different bit is set to 1 in `set1` and to 0 in `set2`,
`.false.`. otherwise. The sets must be the same size otherwise the
results are undefined.
#### Syntax
`result = set1 ` [[stdlib_bitsets(module):>=(interface)]] ` set2`
or
`result = set1 .GE. set2`
#### Class
Elemental operator
#### Arguments
`set1`: shall be a scalar `bitset_64` or `bitset_large` expression. It
is an `intent(in)` argument.
`set2`: shall be a scalar expression of the same type as `self`. It
will have the same number of bits as `set1`. It is an `intent(in)`
argument.
#### Result value
The result is a default logical scalar.
The result is `.true.` if the bits in `set1` and `set2` are the same
or the highest order different bit is set to 1 in `set1` and to 0 in
`set2`, `.false.` otherwise.
#### Example
```fortran
{!example/bitsets/example_bitsets_ge.f90!}
```
### `>` - compare two bitsets to determine whether the first is greater than the other
#### Status
Experimental
#### Description
Returns `.true.` if the bits in `set1` and `set2` differ and the
highest order different bit is set to 1 in `set1` and to 0 in `set2`,
`.false.` otherwise. The sets must be the same size otherwise the
results are undefined.
#### Syntax
`result = set1 ` [[stdlib_bitsets(module):>(interface)]] ` set2`
or
`result = set1 .GT. set2`
#### Class
Elemental operator
#### Arguments
`set1`: shall be a scalar `bitset_64` or `bitset_large` expression. It
is an `intent(in)` argument.
`set2`: shall be a scalar expression of the same type as `self`. It
will have the same number of bits as `set1`. It is an `intent(in)`
argument.
#### Result value
The result is a default logical scalar.
The result is `.true.` if the bits in `set1` and `set2` differ and the
highest order different bit is set to 1 in `set1` and to 0 in `set2`,
`.false.` otherwise.
#### Example
```fortran
{!example/bitsets/example_bitsets_gt.f90!}
```
### `<=` - compare two bitsets to determine whether the first is less than or equal to the other
#### Status
Experimental
#### Description
Returns `.true.` if the bits in `set1` and `set2` are the same or the
highest order different bit is set to 0 in `set1` and to 1 in `set2`,
`.false.` otherwise. The sets must be the same size otherwise the
results are undefined.
#### Syntax
`result = set1 ` [[stdlib_bitsets(module):<=(interface)]] ` set2`
or
`result = set1 .LE. set2`
#### Class
Elemental operator
#### Arguments
`set1`: shall be a scalar `bitset_64` or `bitset_large` expression. It
is an `intent(in)` argument.
`set2`: shall be a scalar expression of the same type as `self`. It
will have the same number of bits as `set1`. It is an `intent(in)`
argument.
#### Result value
The result is a default logical scalar.
The result is `.true.` if the bits in `set1` and `set2` are the same
or the highest order different bit is set to 0 in `set1` and to 1 in
`set2`, `.false.` otherwise.
#### Example
```fortran
{!example/bitsets/example_bitsets_le.f90!}
```
### `<` - compare two bitsets to determine whether the first is less than the other
#### Status
Experimental
#### Description
Returns `.true.` if the bits in `set1` and `set2` differ and the
highest order different bit is set to 0 in `set1` and to 1 in `set2`,
`.false.` otherwise. The sets must be the same size otherwise the
results are undefined.
#### Syntax
`result = set1 ` [[stdlib_bitsets(module):<(interface)]] ` set2`
or
`result = set1 .LT. set2
#### Class
Elemental operator
#### Arguments
`set1`: shall be a scalar `bitset_64` or `bitset_large` expression. It
is an `intent(in)` argument.
`set2`: shall be a scalar expression of the same type as `self`. It
will have the same number of bits as `set1`. It is an `intent(in)`
argument.
#### Result value
The result is a default logical scalar.
The result is `.true.` if the bits in `set1` and `set2` differ and the
highest order different bit is set to 0 in `set1` and to 1 in `set2`,
`.false.` otherwise.
#### Example
```fortran
{!example/bitsets/example_bitsets_lt.f90!}
```
|