@@ -78,13 +78,13 @@ position, that, in turn, is indexed from 0 to `bits-1`. `bitset_type` is
78
78
used only as a ` class ` to define entities that can be either a ` bitset_64 ` or
79
79
a ` bitset_large ` . The syntax for using the types are:
80
80
81
- ` class([[stdlib_bitsets(module):bitset_type(type)]]) :: variable `
81
+ ` class( ` [[ stdlib_bitsets(module): bitset_type (type)]] ` ) :: variable `
82
82
83
- ` type([[stdlib_bitsets(module):bitset_64(type)]]) :: variable `
83
+ ` type( ` [[ stdlib_bitsets(module): bitset_64 (type)]] ` ) :: variable `
84
84
85
85
and
86
86
87
- ` type([[stdlib_bitsets(module):bitset_large(type)]]) :: variable `
87
+ ` type( ` [[ stdlib_bitsets(module): bitset_large (type)]] ` ) :: variable `
88
88
89
89
## The * bitset-literal*
90
90
@@ -239,7 +239,7 @@ Determines whether all bits are set to 1 in `self`.
239
239
240
240
#### Syntax
241
241
242
- ` result = self % [[bitset_type(type):all(bound)]]() `
242
+ ` result = self % ` [[ bitset_type(type): all (bound)]] ` () `
243
243
244
244
#### Class
245
245
@@ -276,7 +276,7 @@ number of bits, otherwise the result is undefined.
276
276
277
277
#### Syntax
278
278
279
- ` call [[stdlib_bitsets(module):and(interface)]](set1, set2) `
279
+ ` call ` [[ stdlib_bitsets(module): and (interface)]] ` (set1, set2) `
280
280
281
281
#### Class
282
282
@@ -314,7 +314,7 @@ result is undefined.
314
314
315
315
#### Syntax
316
316
317
- ` call [[stdlib_bitsets(module):and_not(interface)]](set1, set2) `
317
+ ` call ` [[ stdlib_bitsets(module): and_not (interface)]] ` (set1, set2) `
318
318
319
319
#### Class
320
320
@@ -349,7 +349,7 @@ Determines whether any bits are set in `self`.
349
349
350
350
#### Syntax
351
351
352
- ` result = self % [[bitset_type(type):any(bound)]]() `
352
+ ` result = self % ` [[ bitset_type(type): any (bound)]] ` () `
353
353
354
354
#### Class
355
355
@@ -383,7 +383,7 @@ Returns the number of bits that are set to one in `self`.
383
383
384
384
#### Syntax
385
385
386
- ` result = self % [[bitset_type(type):bit_count(bound)]] () `
386
+ ` result = self % ` [[ bitset_type(type): bit_count (bound)]] ` () `
387
387
388
388
#### Class
389
389
@@ -417,7 +417,7 @@ Reports the number of bits in `self`.
417
417
418
418
#### Syntax
419
419
420
- ` result = self % [[bitset_type(type):bits(bound)]] () `
420
+ ` result = self % ` [[ bitset_type(type): bits (bound)]] ` () `
421
421
422
422
#### Class
423
423
@@ -460,11 +460,11 @@ Note: Positions outside the range 0 to `bits(set) -1` are ignored.
460
460
461
461
#### Syntax
462
462
463
- ` call self % [[bitset_type(type):clear(bound)]](pos) `
463
+ ` call self % ` [[ bitset_type(type): clear (bound)]] ` (pos) `
464
464
465
465
or
466
466
467
- ` call self % [[bitset_type(type):clear(bound)]](start_pos, end_pos) `
467
+ ` call self % ` [[ bitset_type(type): clear (bound)]] ` (start_pos, end_pos) `
468
468
469
469
#### Class
470
470
@@ -507,7 +507,7 @@ informative message.
507
507
508
508
#### Syntax
509
509
510
- ` call [[stdlib_bitsets(module):extract(interface)]](new, old, start_pos, stop_pos, status ) `
510
+ ` call ` [[ stdlib_bitsets(module): extract (interface)]] ` (new, old, start_pos, stop_pos, status ) `
511
511
512
512
#### Class
513
513
@@ -563,11 +563,11 @@ flip the bit values with positions from `start_pos` to `end_pos` in
563
563
564
564
#### Syntax
565
565
566
- ` call self % [[bitset_type(type):flip(bound)]] (pos) `
566
+ ` call self % ` [[ bitset_type(type): flip (bound)]] ` (pos) `
567
567
568
568
or
569
569
570
- ` call self % [[bitset_type(type):flip(bound)]] (start_pos, end_pos) `
570
+ ` call self % ` [[ bitset_type(type): flip (bound)]] ` (start_pos, end_pos) `
571
571
572
572
#### Class
573
573
@@ -606,7 +606,7 @@ binary literal.
606
606
607
607
#### Syntax
608
608
609
- ` call self % [[bitset_type(type):from_string(bound)]](string[, status]) `
609
+ ` call self % ` [[ bitset_type(type): from_string (bound)]] ` (string[, status]) `
610
610
611
611
#### Class
612
612
@@ -655,7 +655,7 @@ Experimental
655
655
656
656
#### Syntax
657
657
658
- ` call self % [[bitset_type(type):init(bound)]] (bits [, status]) `
658
+ ` call self % ` [[ bitset_type(type): init (bound)]] ` (bits [, status]) `
659
659
660
660
#### Class
661
661
@@ -705,7 +705,7 @@ file.
705
705
706
706
#### Syntax
707
707
708
- ` call self % [[bitset_type(type):input(bound)]] (unit [, status]) `
708
+ ` call self % ` [[ bitset_type(type): input (bound)]] ` (unit [, status]) `
709
709
710
710
#### Class
711
711
@@ -757,7 +757,7 @@ Determines whether no bits are set in `self`.
757
757
758
758
#### Syntax
759
759
760
- ` result = self % [[bitset_type(type):none(bound)]] () `
760
+ ` result = self % ` [[ bitset_type(type): none (bound)]] ` () `
761
761
762
762
#### Class
763
763
@@ -792,7 +792,7 @@ Performs the logical complement on the bits of `self`.
792
792
793
793
#### Syntax
794
794
795
- ` call self % [[bitset_type(type):not(bound)]] () `
795
+ ` call self % ` [[ bitset_type(type): not (bound)]] ` () `
796
796
797
797
#### Class
798
798
@@ -824,7 +824,7 @@ same number of bits, otherwise the result is undefined.
824
824
825
825
#### Syntax
826
826
827
- ` call [[stdlib_bitsets(module):or(interface)]](set1, set2) `
827
+ ` call ` [[ stdlib_bitsets(module): or (interface)]] ` (set1, set2) `
828
828
829
829
#### Class
830
830
@@ -859,7 +859,7 @@ Writes a binary representation of a bitset to an unformatted file.
859
859
860
860
#### Syntax
861
861
862
- ` call self % [[bitset_type(type):output(bound)]] (unit[, status]) `
862
+ ` call self % ` [[ bitset_type(type): output (bound)]] ` (unit[, status]) `
863
863
864
864
#### Class
865
865
@@ -904,11 +904,11 @@ value.
904
904
905
905
#### Syntax
906
906
907
- ` call self % [[bitset_type(type):read_bitset(bound)]](string[, status]) `
907
+ ` call self % ` [[ bitset_type(type): read_bitset (bound)]] ` (string[, status]) `
908
908
909
909
or
910
910
911
- ` call self % [[bitset_type(type):read_bitset(bound)]](unit[, advance, status]) `
911
+ ` call self % ` [[ bitset_type(type): read_bitset (bound)]] ` (unit[, advance, status]) `
912
912
913
913
914
914
#### Class
@@ -995,11 +995,11 @@ set the bits at positions from `start_pos` to `end_pos` in `self` to 1.
995
995
996
996
#### Syntax
997
997
998
- ` call self % [[bitset_type(type):set(bound)]] (POS) `
998
+ ` call self % ` [[ bitset_type(type): set (bound)]] ` (POS) `
999
999
1000
1000
or
1001
1001
1002
- ` call self % [[bitset_type(type):set(bound)]] (START_POS, END_POS) `
1002
+ ` call self % ` [[ bitset_type(type): set (bound)]] ` (START_POS, END_POS) `
1003
1003
1004
1004
#### Class
1005
1005
@@ -1038,7 +1038,7 @@ Determine whether the bit at position `pos` is set to 1 in `self`.
1038
1038
1039
1039
#### Syntax
1040
1040
1041
- ` result = self % [[bitset_type(type):test(bound)]](pos) `
1041
+ ` result = self % ` [[ bitset_type(type): test (bound)]] ` (pos) `
1042
1042
1043
1043
#### Class
1044
1044
@@ -1077,7 +1077,7 @@ Represents the value of `self` as a binary literal in `string`.
1077
1077
1078
1078
#### Syntax
1079
1079
1080
- ` call self % [[bitset_type(type):to_string(bound)]](string[, status]) `
1080
+ ` call self % ` [[ bitset_type(type): to_string (bound)]] ` (string[, status]) `
1081
1081
1082
1082
#### Class
1083
1083
@@ -1121,7 +1121,7 @@ Determines the value of the bit at position, `pos`, in `self`.
1121
1121
1122
1122
#### Syntax
1123
1123
1124
- ` result = self % [[bitset_type(type):value(bound)]](pos) `
1124
+ ` result = self % ` [[ bitset_type(type): value (bound)]] ` (pos) `
1125
1125
1126
1126
#### Class
1127
1127
@@ -1162,11 +1162,11 @@ character string or formatted file.
1162
1162
1163
1163
#### Syntax
1164
1164
1165
- ` call self % [[bitset_type(type):write_bitset(bound)]](string[, status]) `
1165
+ ` call self % ` [[ bitset_type(type): write_bitset (bound)]] ` (string[, status]) `
1166
1166
1167
1167
or
1168
1168
1169
- ` call self % [[bitset_type(type):write_bitset(bound)]] (unit[, advance, status]) `
1169
+ ` call self % ` [[ bitset_type(type): write_bitset (bound)]] ` (unit[, advance, status]) `
1170
1170
1171
1171
#### Class
1172
1172
@@ -1229,7 +1229,7 @@ the samee number of bits, otherwise the result is undefined.
1229
1229
1230
1230
#### Syntax
1231
1231
1232
- ` result = [[stdlib_bitsets(module):xor(interface)]] (set1, set2) `
1232
+ ` result = ` [[ stdlib_bitsets(module): xor (interface)]] ` (set1, set2) `
1233
1233
1234
1234
#### Class
1235
1235
@@ -1267,7 +1267,7 @@ Returns `.true.` if all bits in `set1` and `set2` have the same value,
1267
1267
1268
1268
#### Syntax
1269
1269
1270
- ` result = set1 [[stdlib_bitsets(module):==(interface)]] set2 `
1270
+ ` result = set1 ` [[ stdlib_bitsets(module):==(interface)]] ` set2 `
1271
1271
1272
1272
or
1273
1273
@@ -1311,7 +1311,7 @@ Returns `.true.` if any bits in `self` and `set2` differ in value,
1311
1311
1312
1312
#### Syntax
1313
1313
1314
- ` result = set1 [[stdlib_bitsets(module):/=(interface)]] set2 `
1314
+ ` result = set1 ` [[ stdlib_bitsets(module):/=(interface)]] ` set2 `
1315
1315
1316
1316
or
1317
1317
@@ -1357,7 +1357,7 @@ results are undefined.
1357
1357
1358
1358
#### Syntax
1359
1359
1360
- ` result = set1 [[stdlib_bitsets(module):>=(interface)]] set2 `
1360
+ ` result = set1 ` [[ stdlib_bitsets(module):>=(interface)]] ` set2 `
1361
1361
1362
1362
or
1363
1363
@@ -1404,7 +1404,7 @@ results are undefined.
1404
1404
1405
1405
#### Syntax
1406
1406
1407
- ` result = set1 [[stdlib_bitsets(module):>(interface)]] set2 `
1407
+ ` result = set1 ` [[ stdlib_bitsets(module):>(interface)]] ` set2 `
1408
1408
1409
1409
or
1410
1410
@@ -1451,7 +1451,7 @@ results are undefined.
1451
1451
1452
1452
#### Syntax
1453
1453
1454
- ` result = set1 [[stdlib_bitsets(module):<=(interface)]] set2 `
1454
+ ` result = set1 ` [[ stdlib_bitsets(module):<=(interface)]] ` set2 `
1455
1455
1456
1456
or
1457
1457
@@ -1498,7 +1498,7 @@ results are undefined.
1498
1498
1499
1499
#### Syntax
1500
1500
1501
- ` result = set1 [[stdlib_bitsets(module):<(interface)]] set2 `
1501
+ ` result = set1 ` [[ stdlib_bitsets(module):<(interface)]] ` set2 `
1502
1502
1503
1503
or
1504
1504
0 commit comments