This file is indexed.

/usr/share/doc/libjsr166y-java/extra166y/api/extra166y/ParallelDoubleArray.html is in libjsr166y-java-doc 1.7.0-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_79) on Sun Apr 26 01:26:17 UTC 2015 -->
<title>ParallelDoubleArray</title>
<meta name="date" content="2015-04-26">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
    if (location.href.indexOf('is-external=true') == -1) {
        parent.document.title="ParallelDoubleArray";
    }
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!--   -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../extra166y/package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li><a href="../index-all.html">Index</a></li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../extra166y/ParallelArrayWithMapping.html" title="class in extra166y"><span class="strong">Prev Class</span></a></li>
<li><a href="../extra166y/ParallelDoubleArray.SummaryStatistics.html" title="interface in extra166y"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?extra166y/ParallelDoubleArray.html" target="_top">Frames</a></li>
<li><a href="ParallelDoubleArray.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_top");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested_class_summary">Nested</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!--   -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">extra166y</div>
<h2 title="Class ParallelDoubleArray" class="title">Class ParallelDoubleArray</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li><a href="../extra166y/AbstractParallelAnyArray.html" title="class in extra166y">extra166y.AbstractParallelAnyArray</a></li>
<li>
<ul class="inheritance">
<li><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">extra166y.ParallelDoubleArrayWithDoubleMapping</a></li>
<li>
<ul class="inheritance">
<li><a href="../extra166y/ParallelDoubleArrayWithFilter.html" title="class in extra166y">extra166y.ParallelDoubleArrayWithFilter</a></li>
<li>
<ul class="inheritance">
<li><a href="../extra166y/ParallelDoubleArrayWithBounds.html" title="class in extra166y">extra166y.ParallelDoubleArrayWithBounds</a></li>
<li>
<ul class="inheritance">
<li>extra166y.ParallelDoubleArray</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="strong">ParallelDoubleArray</span>
extends <a href="../extra166y/ParallelDoubleArrayWithBounds.html" title="class in extra166y">ParallelDoubleArrayWithBounds</a></pre>
<div class="block">An array of doubles supporting parallel operations.  This class
 provides methods supporting the same operations as <a href="../extra166y/ParallelArray.html" title="class in extra166y"><code>ParallelArray</code></a>, but specialized for scalar doubles. It additionally
 provides a few methods specific to numerical values.</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested_class_summary">
<!--   -->
</a>
<h3>Nested Class Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation">
<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static interface&nbsp;</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.SummaryStatistics.html" title="interface in extra166y">ParallelDoubleArray.SummaryStatistics</a></strong></code>
<div class="block">Summary statistics for a possibly bounded, filtered, and/or
 mapped ParallelDoubleArray.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!--   -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier</th>
<th class="colLast" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected </code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#ParallelDoubleArray(jsr166y.ForkJoinPool,%20double[],%20int)">ParallelDoubleArray</a></strong>(jsr166y.ForkJoinPool&nbsp;executor,
                   double[]&nbsp;array,
                   int&nbsp;limit)</code>
<div class="block">Constructor for use by subclasses to create a new ParallelDoubleArray
 using the given executor, and initially using the supplied
 array, with effective size bound by the given limit.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!--   -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#addAll(double[])">addAll</a></strong>(double[]&nbsp;other)</code>
<div class="block">Equivalent to <tt>asList().addAll</tt> but specialized for
 array arguments and likely to be more efficient.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#addAll(extra166y.ParallelDoubleArrayWithDoubleMapping)">addAll</a></strong>(<a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a>&nbsp;other)</code>
<div class="block">Appends all (possibly bounded, filtered, or mapped) elements of
 the given ParallelDoubleArray, resizing and/or reallocating this
 array if necessary.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#all()">all</a></strong>()</code>
<div class="block">Returns a new ParallelDoubleArray holding all elements</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#allUniqueElements()">allUniqueElements</a></strong>()</code>
<div class="block">Returns a new ParallelDoubleArray containing only the unique
 elements of this array (that is, without any duplicates).</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#apply(extra166y.Ops.DoubleProcedure)">apply</a></strong>(<a href="../extra166y/Ops.DoubleProcedure.html" title="interface in extra166y">Ops.DoubleProcedure</a>&nbsp;procedure)</code>
<div class="block">Applies the given procedure to elements</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.util.List&lt;java.lang.Double&gt;</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#asList()">asList</a></strong>()</code>
<div class="block">Returns a view of this ParallelDoubleArray as a List.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#binarySearch(double)">binarySearch</a></strong>(double&nbsp;target)</code>
<div class="block">Assuming this array is sorted, returns the index of an element
 equal to given target, or -1 if not present.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#binarySearch(double,%20extra166y.Ops.DoubleComparator)">binarySearch</a></strong>(double&nbsp;target,
            <a href="../extra166y/Ops.DoubleComparator.html" title="interface in extra166y">Ops.DoubleComparator</a>&nbsp;comparator)</code>
<div class="block">Assuming this array is sorted with respect to the given
 comparator, returns the index of an element equal to given
 target, or -1 if not present.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#create(int,%20jsr166y.ForkJoinPool)">create</a></strong>(int&nbsp;size,
      jsr166y.ForkJoinPool&nbsp;executor)</code>
<div class="block">Creates a new ParallelDoubleArray using the given executor and
 an array of the given size</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#createEmpty(int,%20jsr166y.ForkJoinPool)">createEmpty</a></strong>(int&nbsp;size,
           jsr166y.ForkJoinPool&nbsp;executor)</code>
<div class="block">Creates a new ParallelDoubleArray using the given executor and
 an array of the given size, but with an initial effective size
 of zero, enabling incremental insertion via <a href="../extra166y/ParallelDoubleArray.html#asList()"><code>asList()</code></a> operations.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#createFromCopy(double[],%20jsr166y.ForkJoinPool)">createFromCopy</a></strong>(double[]&nbsp;source,
              jsr166y.ForkJoinPool&nbsp;executor)</code>
<div class="block">Creates a new ParallelDoubleArray using the given executor and
 initially holding copies of the given
 source elements.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#createFromCopy(int,%20double[],%20jsr166y.ForkJoinPool)">createFromCopy</a></strong>(int&nbsp;size,
              double[]&nbsp;source,
              jsr166y.ForkJoinPool&nbsp;executor)</code>
<div class="block">Creates a new ParallelDoubleArray using an array of the given size,
 initially holding copies of the given source truncated or
 padded with zeros to obtain the specified length.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#createUsingHandoff(double[],%20jsr166y.ForkJoinPool)">createUsingHandoff</a></strong>(double[]&nbsp;handoff,
                  jsr166y.ForkJoinPool&nbsp;executor)</code>
<div class="block">Creates a new ParallelDoubleArray initially using the given array and
 executor.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#cumulate(extra166y.Ops.DoubleReducer,%20double)">cumulate</a></strong>(<a href="../extra166y/Ops.DoubleReducer.html" title="interface in extra166y">Ops.DoubleReducer</a>&nbsp;reducer,
        double&nbsp;base)</code>
<div class="block">Replaces each element with the running cumulation of applying
 the given reducer.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#cumulateSum()">cumulateSum</a></strong>()</code>
<div class="block">Replaces each element with the running sum</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static jsr166y.ForkJoinPool</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#defaultExecutor()">defaultExecutor</a></strong>()</code>
<div class="block">Returns a common default executor for use in ParallelArrays.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#get(int)">get</a></strong>(int&nbsp;i)</code>
<div class="block">Returns the element of the array at the given index</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>double[]</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#getArray()">getArray</a></strong>()</code>
<div class="block">Returns the underlying array used for computations</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>jsr166y.ForkJoinPool</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#getExecutor()">getExecutor</a></strong>()</code>
<div class="block">Returns the executor used for computations</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#hasAllEqualElements(extra166y.ParallelDoubleArrayWithDoubleMapping)">hasAllEqualElements</a></strong>(<a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a>&nbsp;other)</code>
<div class="block">Returns true if all elements at the same relative positions
 of this and other array are equal.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#indexOf(double)">indexOf</a></strong>(double&nbsp;target)</code>
<div class="block">Returns the index of some element equal to given target, or -1
 if not present</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.util.Iterator&lt;java.lang.Double&gt;</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#iterator()">iterator</a></strong>()</code>
<div class="block">Returns an iterator stepping through each element of the array
 up to the current limit.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#max()">max</a></strong>()</code>
<div class="block">Returns the maximum element, or -Double.MAX_VALUE if empty</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#max(extra166y.Ops.DoubleComparator)">max</a></strong>(<a href="../extra166y/Ops.DoubleComparator.html" title="interface in extra166y">Ops.DoubleComparator</a>&nbsp;comparator)</code>
<div class="block">Returns the maximum element, or -Double.MAX_VALUE if empty</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#min()">min</a></strong>()</code>
<div class="block">Returns the minimum element, or Double.MAX_VALUE if empty,</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#min(extra166y.Ops.DoubleComparator)">min</a></strong>(<a href="../extra166y/Ops.DoubleComparator.html" title="interface in extra166y">Ops.DoubleComparator</a>&nbsp;comparator)</code>
<div class="block">Returns the minimum element, or Double.MAX_VALUE if empty</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#precumulate(extra166y.Ops.DoubleReducer,%20double)">precumulate</a></strong>(<a href="../extra166y/Ops.DoubleReducer.html" title="interface in extra166y">Ops.DoubleReducer</a>&nbsp;reducer,
           double&nbsp;base)</code>
<div class="block">Replaces each element with the cumulation of applying the given
 reducer to all previous values, and returns the total
 reduction.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#precumulateSum()">precumulateSum</a></strong>()</code>
<div class="block">Replaces each element with its prefix sum</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#reduce(extra166y.Ops.DoubleReducer,%20double)">reduce</a></strong>(<a href="../extra166y/Ops.DoubleReducer.html" title="interface in extra166y">Ops.DoubleReducer</a>&nbsp;reducer,
      double&nbsp;base)</code>
<div class="block">Returns reduction of elements</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#removeAll(extra166y.Ops.DoublePredicate)">removeAll</a></strong>(<a href="../extra166y/Ops.DoublePredicate.html" title="interface in extra166y">Ops.DoublePredicate</a>&nbsp;selector)</code>
<div class="block">Removes from the array all elements for which the given
 selector holds.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#removeConsecutiveDuplicates()">removeConsecutiveDuplicates</a></strong>()</code>
<div class="block">Removes consecutive elements that are equal,
 shifting others leftward, and possibly decreasing size.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#replaceWithGeneratedValue(extra166y.Ops.DoubleGenerator)">replaceWithGeneratedValue</a></strong>(<a href="../extra166y/Ops.DoubleGenerator.html" title="interface in extra166y">Ops.DoubleGenerator</a>&nbsp;generator)</code>
<div class="block">Replaces elements with the results of applying the given
 generator.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#replaceWithMappedIndex(extra166y.Ops.IntAndDoubleToDouble)">replaceWithMappedIndex</a></strong>(<a href="../extra166y/Ops.IntAndDoubleToDouble.html" title="interface in extra166y">Ops.IntAndDoubleToDouble</a>&nbsp;op)</code>
<div class="block">Replaces elements with the results of applying the given
 mapping to each index and current element value</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#replaceWithMappedIndex(extra166y.Ops.IntToDouble)">replaceWithMappedIndex</a></strong>(<a href="../extra166y/Ops.IntToDouble.html" title="interface in extra166y">Ops.IntToDouble</a>&nbsp;op)</code>
<div class="block">Replaces elements with the results of applying the given
 op to their indices.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#replaceWithMapping(extra166y.Ops.BinaryDoubleOp,%20double[])">replaceWithMapping</a></strong>(<a href="../extra166y/Ops.BinaryDoubleOp.html" title="interface in extra166y">Ops.BinaryDoubleOp</a>&nbsp;combiner,
                  double[]&nbsp;other)</code>
<div class="block">Replaces elements with results of applying
 <tt>op(thisElement, otherElement)</tt></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#replaceWithMapping(extra166y.Ops.BinaryDoubleOp,%20extra166y.ParallelDoubleArrayWithDoubleMapping)">replaceWithMapping</a></strong>(<a href="../extra166y/Ops.BinaryDoubleOp.html" title="interface in extra166y">Ops.BinaryDoubleOp</a>&nbsp;combiner,
                  <a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a>&nbsp;other)</code>
<div class="block">Replaces elements with results of applying
 <tt>op(thisElement, otherElement)</tt></div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#replaceWithMapping(extra166y.Ops.DoubleOp)">replaceWithMapping</a></strong>(<a href="../extra166y/Ops.DoubleOp.html" title="interface in extra166y">Ops.DoubleOp</a>&nbsp;op)</code>
<div class="block">Replaces elements with the results of applying the given op
 to their current values.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#replaceWithValue(double)">replaceWithValue</a></strong>(double&nbsp;value)</code>
<div class="block">Replaces elements with the given value.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#set(int,%20double)">set</a></strong>(int&nbsp;i,
   double&nbsp;x)</code>
<div class="block">Sets the element of the array at the given index to the given value</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#setLimit(int)">setLimit</a></strong>(int&nbsp;newLimit)</code>
<div class="block">Ensures that the underlying array can be accessed up to the
 given upper bound, reallocating and copying the underlying
 array to expand if necessary.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#size()">size</a></strong>()</code>
<div class="block">Returns the effective size of the underlying array.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#sort()">sort</a></strong>()</code>
<div class="block">Sorts the array, assuming all elements are Comparable.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#sort(extra166y.Ops.DoubleComparator)">sort</a></strong>(<a href="../extra166y/Ops.DoubleComparator.html" title="interface in extra166y">Ops.DoubleComparator</a>&nbsp;comparator)</code>
<div class="block">Sorts the array.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#sum()">sum</a></strong>()</code>
<div class="block">Returns the sum of elements</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArray.SummaryStatistics.html" title="interface in extra166y">ParallelDoubleArray.SummaryStatistics</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#summary()">summary</a></strong>()</code>
<div class="block">Returns summary statistics, using natural comparator</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArray.SummaryStatistics.html" title="interface in extra166y">ParallelDoubleArray.SummaryStatistics</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#summary(extra166y.Ops.DoubleComparator)">summary</a></strong>(<a href="../extra166y/Ops.DoubleComparator.html" title="interface in extra166y">Ops.DoubleComparator</a>&nbsp;comparator)</code>
<div class="block">Returns summary statistics, using the given comparator
 to locate minimum and maximum elements.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#toString()">toString</a></strong>()</code>
<div class="block">Equivalent to <tt>asList().toString()</tt></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArrayWithBounds.html" title="class in extra166y">ParallelDoubleArrayWithBounds</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#withBounds(int,%20int)">withBounds</a></strong>(int&nbsp;firstIndex,
          int&nbsp;upperBound)</code>
<div class="block">Returns an operation prefix that causes a method to
 operate only on the elements of the array between
 firstIndex (inclusive) and upperBound (exclusive).</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArrayWithFilter.html" title="class in extra166y">ParallelDoubleArrayWithFilter</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#withFilter(extra166y.Ops.BinaryDoublePredicate,%20extra166y.ParallelDoubleArrayWithDoubleMapping)">withFilter</a></strong>(<a href="../extra166y/Ops.BinaryDoublePredicate.html" title="interface in extra166y">Ops.BinaryDoublePredicate</a>&nbsp;selector,
          <a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a>&nbsp;other)</code>
<div class="block">Returns an operation prefix that causes a method to operate
 only on elements for which the given binary selector returns
 true</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArrayWithFilter.html" title="class in extra166y">ParallelDoubleArrayWithFilter</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#withFilter(extra166y.Ops.DoublePredicate)">withFilter</a></strong>(<a href="../extra166y/Ops.DoublePredicate.html" title="interface in extra166y">Ops.DoublePredicate</a>&nbsp;selector)</code>
<div class="block">Returns an operation prefix that causes a method to operate
 only on the elements of the array for which the given selector
 returns true</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArrayWithFilter.html" title="class in extra166y">ParallelDoubleArrayWithFilter</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#withIndexedFilter(extra166y.Ops.IntAndDoublePredicate)">withIndexedFilter</a></strong>(<a href="../extra166y/Ops.IntAndDoublePredicate.html" title="interface in extra166y">Ops.IntAndDoublePredicate</a>&nbsp;selector)</code>
<div class="block">Returns an operation prefix that causes a method to operate
 only on elements for which the given indexed selector returns
 true</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#withIndexedMapping(extra166y.Ops.IntAndDoubleToDouble)">withIndexedMapping</a></strong>(<a href="../extra166y/Ops.IntAndDoubleToDouble.html" title="interface in extra166y">Ops.IntAndDoubleToDouble</a>&nbsp;mapper)</code>
<div class="block">Returns an operation prefix that causes a method to operate on
 mappings of this array using the given mapper that accepts as
 arguments an element's current index and value, and produces a
 new value.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArrayWithLongMapping.html" title="class in extra166y">ParallelDoubleArrayWithLongMapping</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#withIndexedMapping(extra166y.Ops.IntAndDoubleToLong)">withIndexedMapping</a></strong>(<a href="../extra166y/Ops.IntAndDoubleToLong.html" title="interface in extra166y">Ops.IntAndDoubleToLong</a>&nbsp;mapper)</code>
<div class="block">Returns an operation prefix that causes a method to operate on
 mappings of this array using the given mapper that accepts as
 arguments an element's current index and value, and produces a
 new value.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>&lt;U&gt;&nbsp;<a href="../extra166y/ParallelDoubleArrayWithMapping.html" title="class in extra166y">ParallelDoubleArrayWithMapping</a>&lt;U&gt;</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#withIndexedMapping(extra166y.Ops.IntAndDoubleToObject)">withIndexedMapping</a></strong>(<a href="../extra166y/Ops.IntAndDoubleToObject.html" title="interface in extra166y">Ops.IntAndDoubleToObject</a>&lt;? extends U&gt;&nbsp;mapper)</code>
<div class="block">Returns an operation prefix that causes a method to operate on
 mappings of this array using the given mapper that accepts as
 arguments an element's current index and value, and produces a
 new value.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#withMapping(extra166y.Ops.BinaryDoubleOp,%20extra166y.ParallelDoubleArrayWithDoubleMapping)">withMapping</a></strong>(<a href="../extra166y/Ops.BinaryDoubleOp.html" title="interface in extra166y">Ops.BinaryDoubleOp</a>&nbsp;combiner,
           <a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a>&nbsp;other)</code>
<div class="block">Returns an operation prefix that causes a method to operate
 on binary mappings of this array and the other array.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArrayWithLongMapping.html" title="class in extra166y">ParallelDoubleArrayWithLongMapping</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#withMapping(extra166y.Ops.DoubleAndDoubleToLong,%20extra166y.ParallelDoubleArrayWithDoubleMapping)">withMapping</a></strong>(<a href="../extra166y/Ops.DoubleAndDoubleToLong.html" title="interface in extra166y">Ops.DoubleAndDoubleToLong</a>&nbsp;combiner,
           <a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a>&nbsp;other)</code>
<div class="block">Returns an operation prefix that causes a method to operate
 on binary mappings of this array and the other array.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>&lt;V&gt;&nbsp;<a href="../extra166y/ParallelDoubleArrayWithMapping.html" title="class in extra166y">ParallelDoubleArrayWithMapping</a>&lt;V&gt;</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#withMapping(extra166y.Ops.DoubleAndDoubleToObject,%20extra166y.ParallelDoubleArrayWithDoubleMapping)">withMapping</a></strong>(<a href="../extra166y/Ops.DoubleAndDoubleToObject.html" title="interface in extra166y">Ops.DoubleAndDoubleToObject</a>&lt;? extends V&gt;&nbsp;combiner,
           <a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a>&nbsp;other)</code>
<div class="block">Returns an operation prefix that causes a method to operate
 on binary mappings of this array and the other array.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#withMapping(extra166y.Ops.DoubleAndLongToDouble,%20extra166y.ParallelLongArrayWithLongMapping)">withMapping</a></strong>(<a href="../extra166y/Ops.DoubleAndLongToDouble.html" title="interface in extra166y">Ops.DoubleAndLongToDouble</a>&nbsp;combiner,
           <a href="../extra166y/ParallelLongArrayWithLongMapping.html" title="class in extra166y">ParallelLongArrayWithLongMapping</a>&nbsp;other)</code>
<div class="block">Returns an operation prefix that causes a method to operate
 on binary mappings of this array and the other array.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArrayWithLongMapping.html" title="class in extra166y">ParallelDoubleArrayWithLongMapping</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#withMapping(extra166y.Ops.DoubleAndLongToLong,%20extra166y.ParallelLongArrayWithLongMapping)">withMapping</a></strong>(<a href="../extra166y/Ops.DoubleAndLongToLong.html" title="interface in extra166y">Ops.DoubleAndLongToLong</a>&nbsp;combiner,
           <a href="../extra166y/ParallelLongArrayWithLongMapping.html" title="class in extra166y">ParallelLongArrayWithLongMapping</a>&nbsp;other)</code>
<div class="block">Returns an operation prefix that causes a method to operate
 on binary mappings of this array and the other array.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>&lt;V&gt;&nbsp;<a href="../extra166y/ParallelDoubleArrayWithMapping.html" title="class in extra166y">ParallelDoubleArrayWithMapping</a>&lt;V&gt;</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#withMapping(extra166y.Ops.DoubleAndLongToObject,%20extra166y.ParallelLongArrayWithLongMapping)">withMapping</a></strong>(<a href="../extra166y/Ops.DoubleAndLongToObject.html" title="interface in extra166y">Ops.DoubleAndLongToObject</a>&lt;? extends V&gt;&nbsp;combiner,
           <a href="../extra166y/ParallelLongArrayWithLongMapping.html" title="class in extra166y">ParallelLongArrayWithLongMapping</a>&nbsp;other)</code>
<div class="block">Returns an operation prefix that causes a method to operate
 on binary mappings of this array and the other array.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>&lt;V,W&gt;&nbsp;<a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#withMapping(extra166y.Ops.DoubleAndObjectToDouble,%20extra166y.ParallelArrayWithMapping)">withMapping</a></strong>(<a href="../extra166y/Ops.DoubleAndObjectToDouble.html" title="interface in extra166y">Ops.DoubleAndObjectToDouble</a>&lt;? super V&gt;&nbsp;combiner,
           <a href="../extra166y/ParallelArrayWithMapping.html" title="class in extra166y">ParallelArrayWithMapping</a>&lt;W,V&gt;&nbsp;other)</code>
<div class="block">Returns an operation prefix that causes a method to operate
 on binary mappings of this array and the other array.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>&lt;V,W&gt;&nbsp;<a href="../extra166y/ParallelDoubleArrayWithLongMapping.html" title="class in extra166y">ParallelDoubleArrayWithLongMapping</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#withMapping(extra166y.Ops.DoubleAndObjectToLong,%20extra166y.ParallelArrayWithMapping)">withMapping</a></strong>(<a href="../extra166y/Ops.DoubleAndObjectToLong.html" title="interface in extra166y">Ops.DoubleAndObjectToLong</a>&lt;? super V&gt;&nbsp;combiner,
           <a href="../extra166y/ParallelArrayWithMapping.html" title="class in extra166y">ParallelArrayWithMapping</a>&lt;W,V&gt;&nbsp;other)</code>
<div class="block">Returns an operation prefix that causes a method to operate
 on binary mappings of this array and the other array.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>&lt;V,W,X&gt;&nbsp;<a href="../extra166y/ParallelDoubleArrayWithMapping.html" title="class in extra166y">ParallelDoubleArrayWithMapping</a>&lt;W&gt;</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#withMapping(extra166y.Ops.DoubleAndObjectToObject,%20extra166y.ParallelArrayWithMapping)">withMapping</a></strong>(<a href="../extra166y/Ops.DoubleAndObjectToObject.html" title="interface in extra166y">Ops.DoubleAndObjectToObject</a>&lt;? super V,? extends W&gt;&nbsp;combiner,
           <a href="../extra166y/ParallelArrayWithMapping.html" title="class in extra166y">ParallelArrayWithMapping</a>&lt;X,V&gt;&nbsp;other)</code>
<div class="block">Returns an operation prefix that causes a method to operate
 on binary mappings of this array and the other array.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#withMapping(extra166y.Ops.DoubleOp)">withMapping</a></strong>(<a href="../extra166y/Ops.DoubleOp.html" title="interface in extra166y">Ops.DoubleOp</a>&nbsp;op)</code>
<div class="block">Returns an operation prefix that causes a method to operate
 on mapped elements of the array using the given op.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../extra166y/ParallelDoubleArrayWithLongMapping.html" title="class in extra166y">ParallelDoubleArrayWithLongMapping</a></code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#withMapping(extra166y.Ops.DoubleToLong)">withMapping</a></strong>(<a href="../extra166y/Ops.DoubleToLong.html" title="interface in extra166y">Ops.DoubleToLong</a>&nbsp;op)</code>
<div class="block">Returns an operation prefix that causes a method to operate
 on mapped elements of the array using the given op.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>&lt;U&gt;&nbsp;<a href="../extra166y/ParallelDoubleArrayWithMapping.html" title="class in extra166y">ParallelDoubleArrayWithMapping</a>&lt;U&gt;</code></td>
<td class="colLast"><code><strong><a href="../extra166y/ParallelDoubleArray.html#withMapping(extra166y.Ops.DoubleToObject)">withMapping</a></strong>(<a href="../extra166y/Ops.DoubleToObject.html" title="interface in extra166y">Ops.DoubleToObject</a>&lt;? extends U&gt;&nbsp;op)</code>
<div class="block">Returns an operation prefix that causes a method to operate
 on mapped elements of the array using the given op.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_extra166y.ParallelDoubleArrayWithDoubleMapping">
<!--   -->
</a>
<h3>Methods inherited from class&nbsp;extra166y.<a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></h3>
<code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html#sequentially()">sequentially</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_extra166y.AbstractParallelAnyArray">
<!--   -->
</a>
<h3>Methods inherited from class&nbsp;extra166y.<a href="../extra166y/AbstractParallelAnyArray.html" title="class in extra166y">AbstractParallelAnyArray</a></h3>
<code><a href="../extra166y/AbstractParallelAnyArray.html#anyIndex()">anyIndex</a>, <a href="../extra166y/AbstractParallelAnyArray.html#isEmpty()">isEmpty</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!--   -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!--   -->
</a>
<h3>Constructor Detail</h3>
<a name="ParallelDoubleArray(jsr166y.ForkJoinPool, double[], int)">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ParallelDoubleArray</h4>
<pre>protected&nbsp;ParallelDoubleArray(jsr166y.ForkJoinPool&nbsp;executor,
                   double[]&nbsp;array,
                   int&nbsp;limit)</pre>
<div class="block">Constructor for use by subclasses to create a new ParallelDoubleArray
 using the given executor, and initially using the supplied
 array, with effective size bound by the given limit. This
 constructor is designed to enable extensions via
 subclassing. To create a ParallelDoubleArray, use <a href="../extra166y/ParallelDoubleArray.html#create(int,%20jsr166y.ForkJoinPool)"><code>create(int, jsr166y.ForkJoinPool)</code></a>,
 <a href="../extra166y/ParallelDoubleArray.html#createEmpty(int,%20jsr166y.ForkJoinPool)"><code>createEmpty(int, jsr166y.ForkJoinPool)</code></a>, <a href="../extra166y/ParallelDoubleArray.html#createUsingHandoff(double[],%20jsr166y.ForkJoinPool)"><code>createUsingHandoff(double[], jsr166y.ForkJoinPool)</code></a> or <a href="../extra166y/ParallelDoubleArray.html#createFromCopy(double[],%20jsr166y.ForkJoinPool)"><code>createFromCopy(double[], jsr166y.ForkJoinPool)</code></a>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>executor</code> - the executor</dd><dd><code>array</code> - the array</dd><dd><code>limit</code> - the upper bound limit</dd></dl>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!--   -->
</a>
<h3>Method Detail</h3>
<a name="defaultExecutor()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>defaultExecutor</h4>
<pre>public static&nbsp;jsr166y.ForkJoinPool&nbsp;defaultExecutor()</pre>
<div class="block">Returns a common default executor for use in ParallelArrays.
 This executor arranges enough parallelism to use most, but not
 necessarily all, of the available processors on this system.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the executor</dd></dl>
</li>
</ul>
<a name="create(int, jsr166y.ForkJoinPool)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>create</h4>
<pre>public static&nbsp;<a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a>&nbsp;create(int&nbsp;size,
                         jsr166y.ForkJoinPool&nbsp;executor)</pre>
<div class="block">Creates a new ParallelDoubleArray using the given executor and
 an array of the given size</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>size</code> - the array size</dd><dd><code>executor</code> - the executor</dd></dl>
</li>
</ul>
<a name="createUsingHandoff(double[], jsr166y.ForkJoinPool)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createUsingHandoff</h4>
<pre>public static&nbsp;<a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a>&nbsp;createUsingHandoff(double[]&nbsp;handoff,
                                     jsr166y.ForkJoinPool&nbsp;executor)</pre>
<div class="block">Creates a new ParallelDoubleArray initially using the given array and
 executor. In general, the handed off array should not be used
 for other purposes once constructing this ParallelDoubleArray.  The
 given array may be internally replaced by another array in the
 course of methods that add or remove elements.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>handoff</code> - the array</dd><dd><code>executor</code> - the executor</dd></dl>
</li>
</ul>
<a name="createFromCopy(double[], jsr166y.ForkJoinPool)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createFromCopy</h4>
<pre>public static&nbsp;<a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a>&nbsp;createFromCopy(double[]&nbsp;source,
                                 jsr166y.ForkJoinPool&nbsp;executor)</pre>
<div class="block">Creates a new ParallelDoubleArray using the given executor and
 initially holding copies of the given
 source elements.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>source</code> - the source of initial elements</dd><dd><code>executor</code> - the executor</dd></dl>
</li>
</ul>
<a name="createFromCopy(int, double[], jsr166y.ForkJoinPool)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createFromCopy</h4>
<pre>public static&nbsp;<a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a>&nbsp;createFromCopy(int&nbsp;size,
                                 double[]&nbsp;source,
                                 jsr166y.ForkJoinPool&nbsp;executor)</pre>
<div class="block">Creates a new ParallelDoubleArray using an array of the given size,
 initially holding copies of the given source truncated or
 padded with zeros to obtain the specified length.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>source</code> - the source of initial elements</dd><dd><code>size</code> - the array size</dd><dd><code>executor</code> - the executor</dd></dl>
</li>
</ul>
<a name="createEmpty(int, jsr166y.ForkJoinPool)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createEmpty</h4>
<pre>public static&nbsp;<a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a>&nbsp;createEmpty(int&nbsp;size,
                              jsr166y.ForkJoinPool&nbsp;executor)</pre>
<div class="block">Creates a new ParallelDoubleArray using the given executor and
 an array of the given size, but with an initial effective size
 of zero, enabling incremental insertion via <a href="../extra166y/ParallelDoubleArray.html#asList()"><code>asList()</code></a> operations.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>size</code> - the array size</dd><dd><code>executor</code> - the executor</dd></dl>
</li>
</ul>
<a name="getExecutor()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getExecutor</h4>
<pre>public&nbsp;jsr166y.ForkJoinPool&nbsp;getExecutor()</pre>
<div class="block">Returns the executor used for computations</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the executor</dd></dl>
</li>
</ul>
<a name="apply(extra166y.Ops.DoubleProcedure)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>apply</h4>
<pre>public&nbsp;void&nbsp;apply(<a href="../extra166y/Ops.DoubleProcedure.html" title="interface in extra166y">Ops.DoubleProcedure</a>&nbsp;procedure)</pre>
<div class="block">Applies the given procedure to elements</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html#apply(extra166y.Ops.DoubleProcedure)">apply</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>procedure</code> - the procedure</dd></dl>
</li>
</ul>
<a name="reduce(extra166y.Ops.DoubleReducer, double)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>reduce</h4>
<pre>public&nbsp;double&nbsp;reduce(<a href="../extra166y/Ops.DoubleReducer.html" title="interface in extra166y">Ops.DoubleReducer</a>&nbsp;reducer,
            double&nbsp;base)</pre>
<div class="block">Returns reduction of elements</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html#reduce(extra166y.Ops.DoubleReducer,%20double)">reduce</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>reducer</code> - the reducer</dd><dd><code>base</code> - the result for an empty array</dd>
<dt><span class="strong">Returns:</span></dt><dd>reduction</dd></dl>
</li>
</ul>
<a name="all()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>all</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a>&nbsp;all()</pre>
<div class="block">Returns a new ParallelDoubleArray holding all elements</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html#all()">all</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>a new ParallelDoubleArray holding all elements</dd></dl>
</li>
</ul>
<a name="replaceWithMapping(extra166y.Ops.DoubleOp)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>replaceWithMapping</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a>&nbsp;replaceWithMapping(<a href="../extra166y/Ops.DoubleOp.html" title="interface in extra166y">Ops.DoubleOp</a>&nbsp;op)</pre>
<div class="block">Replaces elements with the results of applying the given op
 to their current values.</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithFilter.html#replaceWithMapping(extra166y.Ops.DoubleOp)">replaceWithMapping</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithFilter.html" title="class in extra166y">ParallelDoubleArrayWithFilter</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>op</code> - the op</dd>
<dt><span class="strong">Returns:</span></dt><dd>this (to simplify use in expressions)</dd></dl>
</li>
</ul>
<a name="replaceWithMappedIndex(extra166y.Ops.IntToDouble)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>replaceWithMappedIndex</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a>&nbsp;replaceWithMappedIndex(<a href="../extra166y/Ops.IntToDouble.html" title="interface in extra166y">Ops.IntToDouble</a>&nbsp;op)</pre>
<div class="block">Replaces elements with the results of applying the given
 op to their indices.</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithFilter.html#replaceWithMappedIndex(extra166y.Ops.IntToDouble)">replaceWithMappedIndex</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithFilter.html" title="class in extra166y">ParallelDoubleArrayWithFilter</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>op</code> - the op</dd>
<dt><span class="strong">Returns:</span></dt><dd>this (to simplify use in expressions)</dd></dl>
</li>
</ul>
<a name="replaceWithMappedIndex(extra166y.Ops.IntAndDoubleToDouble)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>replaceWithMappedIndex</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a>&nbsp;replaceWithMappedIndex(<a href="../extra166y/Ops.IntAndDoubleToDouble.html" title="interface in extra166y">Ops.IntAndDoubleToDouble</a>&nbsp;op)</pre>
<div class="block">Replaces elements with the results of applying the given
 mapping to each index and current element value</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithFilter.html#replaceWithMappedIndex(extra166y.Ops.IntAndDoubleToDouble)">replaceWithMappedIndex</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithFilter.html" title="class in extra166y">ParallelDoubleArrayWithFilter</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>op</code> - the op</dd>
<dt><span class="strong">Returns:</span></dt><dd>this (to simplify use in expressions)</dd></dl>
</li>
</ul>
<a name="replaceWithGeneratedValue(extra166y.Ops.DoubleGenerator)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>replaceWithGeneratedValue</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a>&nbsp;replaceWithGeneratedValue(<a href="../extra166y/Ops.DoubleGenerator.html" title="interface in extra166y">Ops.DoubleGenerator</a>&nbsp;generator)</pre>
<div class="block">Replaces elements with the results of applying the given
 generator. For example, to fill the array with uniform random
 values, use
 <tt>replaceWithGeneratedValue(Ops.doubleRandom())</tt></div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithFilter.html#replaceWithGeneratedValue(extra166y.Ops.DoubleGenerator)">replaceWithGeneratedValue</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithFilter.html" title="class in extra166y">ParallelDoubleArrayWithFilter</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>generator</code> - the generator</dd>
<dt><span class="strong">Returns:</span></dt><dd>this (to simplify use in expressions)</dd></dl>
</li>
</ul>
<a name="replaceWithValue(double)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>replaceWithValue</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a>&nbsp;replaceWithValue(double&nbsp;value)</pre>
<div class="block">Replaces elements with the given value.</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithFilter.html#replaceWithValue(double)">replaceWithValue</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithFilter.html" title="class in extra166y">ParallelDoubleArrayWithFilter</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>value</code> - the value</dd>
<dt><span class="strong">Returns:</span></dt><dd>this (to simplify use in expressions)</dd></dl>
</li>
</ul>
<a name="replaceWithMapping(extra166y.Ops.BinaryDoubleOp, extra166y.ParallelDoubleArrayWithDoubleMapping)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>replaceWithMapping</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a>&nbsp;replaceWithMapping(<a href="../extra166y/Ops.BinaryDoubleOp.html" title="interface in extra166y">Ops.BinaryDoubleOp</a>&nbsp;combiner,
                                     <a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a>&nbsp;other)</pre>
<div class="block">Replaces elements with results of applying
 <tt>op(thisElement, otherElement)</tt></div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithFilter.html#replaceWithMapping(extra166y.Ops.BinaryDoubleOp,%20extra166y.ParallelDoubleArrayWithDoubleMapping)">replaceWithMapping</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithFilter.html" title="class in extra166y">ParallelDoubleArrayWithFilter</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>other</code> - the other array</dd><dd><code>combiner</code> - the combiner</dd>
<dt><span class="strong">Returns:</span></dt><dd>this (to simplify use in expressions)</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.ArrayIndexOutOfBoundsException</code> - if other array has
 fewer elements than this array.</dd></dl>
</li>
</ul>
<a name="replaceWithMapping(extra166y.Ops.BinaryDoubleOp, double[])">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>replaceWithMapping</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a>&nbsp;replaceWithMapping(<a href="../extra166y/Ops.BinaryDoubleOp.html" title="interface in extra166y">Ops.BinaryDoubleOp</a>&nbsp;combiner,
                                     double[]&nbsp;other)</pre>
<div class="block">Replaces elements with results of applying
 <tt>op(thisElement, otherElement)</tt></div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithFilter.html#replaceWithMapping(extra166y.Ops.BinaryDoubleOp,%20double[])">replaceWithMapping</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithFilter.html" title="class in extra166y">ParallelDoubleArrayWithFilter</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>other</code> - the other array</dd><dd><code>combiner</code> - the combiner</dd>
<dt><span class="strong">Returns:</span></dt><dd>this (to simplify use in expressions)</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.ArrayIndexOutOfBoundsException</code> - if other array has
 fewer elements than this array.</dd></dl>
</li>
</ul>
<a name="indexOf(double)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>indexOf</h4>
<pre>public&nbsp;int&nbsp;indexOf(double&nbsp;target)</pre>
<div class="block">Returns the index of some element equal to given target, or -1
 if not present</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>target</code> - the element to search for</dd>
<dt><span class="strong">Returns:</span></dt><dd>the index or -1 if not present</dd></dl>
</li>
</ul>
<a name="binarySearch(double)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>binarySearch</h4>
<pre>public&nbsp;int&nbsp;binarySearch(double&nbsp;target)</pre>
<div class="block">Assuming this array is sorted, returns the index of an element
 equal to given target, or -1 if not present. If the array
 is not sorted, the results are undefined.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>target</code> - the element to search for</dd>
<dt><span class="strong">Returns:</span></dt><dd>the index or -1 if not present</dd></dl>
</li>
</ul>
<a name="binarySearch(double, extra166y.Ops.DoubleComparator)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>binarySearch</h4>
<pre>public&nbsp;int&nbsp;binarySearch(double&nbsp;target,
               <a href="../extra166y/Ops.DoubleComparator.html" title="interface in extra166y">Ops.DoubleComparator</a>&nbsp;comparator)</pre>
<div class="block">Assuming this array is sorted with respect to the given
 comparator, returns the index of an element equal to given
 target, or -1 if not present. If the array is not sorted, the
 results are undefined.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>target</code> - the element to search for</dd><dd><code>comparator</code> - the comparator</dd>
<dt><span class="strong">Returns:</span></dt><dd>the index or -1 if not present</dd></dl>
</li>
</ul>
<a name="summary(extra166y.Ops.DoubleComparator)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>summary</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArray.SummaryStatistics.html" title="interface in extra166y">ParallelDoubleArray.SummaryStatistics</a>&nbsp;summary(<a href="../extra166y/Ops.DoubleComparator.html" title="interface in extra166y">Ops.DoubleComparator</a>&nbsp;comparator)</pre>
<div class="block">Returns summary statistics, using the given comparator
 to locate minimum and maximum elements.</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html#summary(extra166y.Ops.DoubleComparator)">summary</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>comparator</code> - the comparator to use for
 locating minimum and maximum elements</dd>
<dt><span class="strong">Returns:</span></dt><dd>the summary.</dd></dl>
</li>
</ul>
<a name="summary()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>summary</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArray.SummaryStatistics.html" title="interface in extra166y">ParallelDoubleArray.SummaryStatistics</a>&nbsp;summary()</pre>
<div class="block">Returns summary statistics, using natural comparator</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html#summary()">summary</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>the summary.</dd></dl>
</li>
</ul>
<a name="min(extra166y.Ops.DoubleComparator)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>min</h4>
<pre>public&nbsp;double&nbsp;min(<a href="../extra166y/Ops.DoubleComparator.html" title="interface in extra166y">Ops.DoubleComparator</a>&nbsp;comparator)</pre>
<div class="block">Returns the minimum element, or Double.MAX_VALUE if empty</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html#min(extra166y.Ops.DoubleComparator)">min</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>comparator</code> - the comparator</dd>
<dt><span class="strong">Returns:</span></dt><dd>minimum element, or Double.MAX_VALUE if empty</dd></dl>
</li>
</ul>
<a name="min()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>min</h4>
<pre>public&nbsp;double&nbsp;min()</pre>
<div class="block">Returns the minimum element, or Double.MAX_VALUE if empty,</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html#min()">min</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>minimum element, or Double.MAX_VALUE if empty</dd></dl>
</li>
</ul>
<a name="max(extra166y.Ops.DoubleComparator)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>max</h4>
<pre>public&nbsp;double&nbsp;max(<a href="../extra166y/Ops.DoubleComparator.html" title="interface in extra166y">Ops.DoubleComparator</a>&nbsp;comparator)</pre>
<div class="block">Returns the maximum element, or -Double.MAX_VALUE if empty</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html#max(extra166y.Ops.DoubleComparator)">max</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>comparator</code> - the comparator</dd>
<dt><span class="strong">Returns:</span></dt><dd>maximum element, or -Double.MAX_VALUE if empty</dd></dl>
</li>
</ul>
<a name="max()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>max</h4>
<pre>public&nbsp;double&nbsp;max()</pre>
<div class="block">Returns the maximum element, or -Double.MAX_VALUE if empty</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html#max()">max</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>maximum element, or -Double.MAX_VALUE if empty</dd></dl>
</li>
</ul>
<a name="cumulate(extra166y.Ops.DoubleReducer, double)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cumulate</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a>&nbsp;cumulate(<a href="../extra166y/Ops.DoubleReducer.html" title="interface in extra166y">Ops.DoubleReducer</a>&nbsp;reducer,
                           double&nbsp;base)</pre>
<div class="block">Replaces each element with the running cumulation of applying
 the given reducer. For example, if the contents are the numbers
 <tt>1, 2, 3</tt>, and the reducer operation adds numbers, then
 after invocation of this method, the contents would be <tt>1,
 3, 6</tt> (that is, <tt>1, 1+2, 1+2+3</tt>);</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>reducer</code> - the reducer</dd><dd><code>base</code> - the result for an empty array</dd>
<dt><span class="strong">Returns:</span></dt><dd>this (to simplify use in expressions)</dd></dl>
</li>
</ul>
<a name="precumulate(extra166y.Ops.DoubleReducer, double)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>precumulate</h4>
<pre>public&nbsp;double&nbsp;precumulate(<a href="../extra166y/Ops.DoubleReducer.html" title="interface in extra166y">Ops.DoubleReducer</a>&nbsp;reducer,
                 double&nbsp;base)</pre>
<div class="block">Replaces each element with the cumulation of applying the given
 reducer to all previous values, and returns the total
 reduction. For example, if the contents are the numbers <tt>1,
 2, 3</tt>, and the reducer operation adds numbers, then after
 invocation of this method, the contents would be <tt>0, 1,
 3</tt> (that is, <tt>0, 0+1, 0+1+2</tt>, and the return value
 would be 6 (that is, <tt> 1+2+3</tt>);</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>reducer</code> - the reducer</dd><dd><code>base</code> - the result for an empty array</dd>
<dt><span class="strong">Returns:</span></dt><dd>the total reduction</dd></dl>
</li>
</ul>
<a name="sort(extra166y.Ops.DoubleComparator)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sort</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a>&nbsp;sort(<a href="../extra166y/Ops.DoubleComparator.html" title="interface in extra166y">Ops.DoubleComparator</a>&nbsp;comparator)</pre>
<div class="block">Sorts the array. Unlike Arrays.sort, this sort does
 not guarantee that elements with equal keys maintain their
 relative position in the array.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>comparator</code> - the comparator to use</dd>
<dt><span class="strong">Returns:</span></dt><dd>this (to simplify use in expressions)</dd></dl>
</li>
</ul>
<a name="sort()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sort</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a>&nbsp;sort()</pre>
<div class="block">Sorts the array, assuming all elements are Comparable. Unlike
 Arrays.sort, this sort does not guarantee that elements
 with equal keys maintain their relative position in the array.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>this (to simplify use in expressions)</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.ClassCastException</code> - if any element is not Comparable.</dd></dl>
</li>
</ul>
<a name="removeConsecutiveDuplicates()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>removeConsecutiveDuplicates</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a>&nbsp;removeConsecutiveDuplicates()</pre>
<div class="block">Removes consecutive elements that are equal,
 shifting others leftward, and possibly decreasing size.  This
 method may be used after sorting to ensure that this
 ParallelDoubleArray contains a set of unique elements.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>this (to simplify use in expressions)</dd></dl>
</li>
</ul>
<a name="addAll(double[])">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addAll</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a>&nbsp;addAll(double[]&nbsp;other)</pre>
<div class="block">Equivalent to <tt>asList().addAll</tt> but specialized for
 array arguments and likely to be more efficient.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>other</code> - the elements to add</dd>
<dt><span class="strong">Returns:</span></dt><dd>this (to simplify use in expressions)</dd></dl>
</li>
</ul>
<a name="addAll(extra166y.ParallelDoubleArrayWithDoubleMapping)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addAll</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a>&nbsp;addAll(<a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a>&nbsp;other)</pre>
<div class="block">Appends all (possibly bounded, filtered, or mapped) elements of
 the given ParallelDoubleArray, resizing and/or reallocating this
 array if necessary.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>other</code> - the elements to add</dd>
<dt><span class="strong">Returns:</span></dt><dd>this (to simplify use in expressions)</dd></dl>
</li>
</ul>
<a name="allUniqueElements()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>allUniqueElements</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a>&nbsp;allUniqueElements()</pre>
<div class="block">Returns a new ParallelDoubleArray containing only the unique
 elements of this array (that is, without any duplicates).</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithFilter.html#allUniqueElements()">allUniqueElements</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithFilter.html" title="class in extra166y">ParallelDoubleArrayWithFilter</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>the new ParallelDoubleArray</dd></dl>
</li>
</ul>
<a name="removeAll(extra166y.Ops.DoublePredicate)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>removeAll</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a>&nbsp;removeAll(<a href="../extra166y/Ops.DoublePredicate.html" title="interface in extra166y">Ops.DoublePredicate</a>&nbsp;selector)</pre>
<div class="block">Removes from the array all elements for which the given
 selector holds.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>selector</code> - the selector</dd>
<dt><span class="strong">Returns:</span></dt><dd>this (to simplify use in expressions)</dd></dl>
</li>
</ul>
<a name="hasAllEqualElements(extra166y.ParallelDoubleArrayWithDoubleMapping)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hasAllEqualElements</h4>
<pre>public&nbsp;boolean&nbsp;hasAllEqualElements(<a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a>&nbsp;other)</pre>
<div class="block">Returns true if all elements at the same relative positions
 of this and other array are equal.</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithFilter.html#hasAllEqualElements(extra166y.ParallelDoubleArrayWithDoubleMapping)">hasAllEqualElements</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithFilter.html" title="class in extra166y">ParallelDoubleArrayWithFilter</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>other</code> - the other array</dd>
<dt><span class="strong">Returns:</span></dt><dd>true if equal</dd></dl>
</li>
</ul>
<a name="sum()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sum</h4>
<pre>public&nbsp;double&nbsp;sum()</pre>
<div class="block">Returns the sum of elements</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html#sum()">sum</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>the sum of elements</dd></dl>
</li>
</ul>
<a name="cumulateSum()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cumulateSum</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArray.html" title="class in extra166y">ParallelDoubleArray</a>&nbsp;cumulateSum()</pre>
<div class="block">Replaces each element with the running sum</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>this (to simplify use in expressions)</dd></dl>
</li>
</ul>
<a name="precumulateSum()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>precumulateSum</h4>
<pre>public&nbsp;double&nbsp;precumulateSum()</pre>
<div class="block">Replaces each element with its prefix sum</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the total sum</dd></dl>
</li>
</ul>
<a name="withBounds(int, int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>withBounds</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArrayWithBounds.html" title="class in extra166y">ParallelDoubleArrayWithBounds</a>&nbsp;withBounds(int&nbsp;firstIndex,
                                       int&nbsp;upperBound)</pre>
<div class="block">Returns an operation prefix that causes a method to
 operate only on the elements of the array between
 firstIndex (inclusive) and upperBound (exclusive).</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>firstIndex</code> - the lower bound (inclusive)</dd><dd><code>upperBound</code> - the upper bound (exclusive)</dd>
<dt><span class="strong">Returns:</span></dt><dd>operation prefix</dd></dl>
</li>
</ul>
<a name="withFilter(extra166y.Ops.DoublePredicate)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>withFilter</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArrayWithFilter.html" title="class in extra166y">ParallelDoubleArrayWithFilter</a>&nbsp;withFilter(<a href="../extra166y/Ops.DoublePredicate.html" title="interface in extra166y">Ops.DoublePredicate</a>&nbsp;selector)</pre>
<div class="block">Returns an operation prefix that causes a method to operate
 only on the elements of the array for which the given selector
 returns true</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>selector</code> - the selector</dd>
<dt><span class="strong">Returns:</span></dt><dd>operation prefix</dd></dl>
</li>
</ul>
<a name="withFilter(extra166y.Ops.BinaryDoublePredicate, extra166y.ParallelDoubleArrayWithDoubleMapping)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>withFilter</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArrayWithFilter.html" title="class in extra166y">ParallelDoubleArrayWithFilter</a>&nbsp;withFilter(<a href="../extra166y/Ops.BinaryDoublePredicate.html" title="interface in extra166y">Ops.BinaryDoublePredicate</a>&nbsp;selector,
                                       <a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a>&nbsp;other)</pre>
<div class="block">Returns an operation prefix that causes a method to operate
 only on elements for which the given binary selector returns
 true</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithFilter.html#withFilter(extra166y.Ops.BinaryDoublePredicate,%20extra166y.ParallelDoubleArrayWithDoubleMapping)">withFilter</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithFilter.html" title="class in extra166y">ParallelDoubleArrayWithFilter</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>selector</code> - the selector</dd>
<dt><span class="strong">Returns:</span></dt><dd>operation prefix</dd></dl>
</li>
</ul>
<a name="withIndexedFilter(extra166y.Ops.IntAndDoublePredicate)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>withIndexedFilter</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArrayWithFilter.html" title="class in extra166y">ParallelDoubleArrayWithFilter</a>&nbsp;withIndexedFilter(<a href="../extra166y/Ops.IntAndDoublePredicate.html" title="interface in extra166y">Ops.IntAndDoublePredicate</a>&nbsp;selector)</pre>
<div class="block">Returns an operation prefix that causes a method to operate
 only on elements for which the given indexed selector returns
 true</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>selector</code> - the selector</dd>
<dt><span class="strong">Returns:</span></dt><dd>operation prefix</dd></dl>
</li>
</ul>
<a name="withMapping(extra166y.Ops.DoubleToObject)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>withMapping</h4>
<pre>public&nbsp;&lt;U&gt;&nbsp;<a href="../extra166y/ParallelDoubleArrayWithMapping.html" title="class in extra166y">ParallelDoubleArrayWithMapping</a>&lt;U&gt;&nbsp;withMapping(<a href="../extra166y/Ops.DoubleToObject.html" title="interface in extra166y">Ops.DoubleToObject</a>&lt;? extends U&gt;&nbsp;op)</pre>
<div class="block">Returns an operation prefix that causes a method to operate
 on mapped elements of the array using the given op.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>op</code> - the op</dd>
<dt><span class="strong">Returns:</span></dt><dd>operation prefix</dd></dl>
</li>
</ul>
<a name="withMapping(extra166y.Ops.DoubleOp)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>withMapping</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a>&nbsp;withMapping(<a href="../extra166y/Ops.DoubleOp.html" title="interface in extra166y">Ops.DoubleOp</a>&nbsp;op)</pre>
<div class="block">Returns an operation prefix that causes a method to operate
 on mapped elements of the array using the given op.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>op</code> - the op</dd>
<dt><span class="strong">Returns:</span></dt><dd>operation prefix</dd></dl>
</li>
</ul>
<a name="withMapping(extra166y.Ops.DoubleToLong)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>withMapping</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArrayWithLongMapping.html" title="class in extra166y">ParallelDoubleArrayWithLongMapping</a>&nbsp;withMapping(<a href="../extra166y/Ops.DoubleToLong.html" title="interface in extra166y">Ops.DoubleToLong</a>&nbsp;op)</pre>
<div class="block">Returns an operation prefix that causes a method to operate
 on mapped elements of the array using the given op.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>op</code> - the op</dd>
<dt><span class="strong">Returns:</span></dt><dd>operation prefix</dd></dl>
</li>
</ul>
<a name="withMapping(extra166y.Ops.DoubleAndObjectToObject, extra166y.ParallelArrayWithMapping)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>withMapping</h4>
<pre>public&nbsp;&lt;V,W,X&gt;&nbsp;<a href="../extra166y/ParallelDoubleArrayWithMapping.html" title="class in extra166y">ParallelDoubleArrayWithMapping</a>&lt;W&gt;&nbsp;withMapping(<a href="../extra166y/Ops.DoubleAndObjectToObject.html" title="interface in extra166y">Ops.DoubleAndObjectToObject</a>&lt;? super V,? extends W&gt;&nbsp;combiner,
                                                    <a href="../extra166y/ParallelArrayWithMapping.html" title="class in extra166y">ParallelArrayWithMapping</a>&lt;X,V&gt;&nbsp;other)</pre>
<div class="block">Returns an operation prefix that causes a method to operate
 on binary mappings of this array and the other array.</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html#withMapping(extra166y.Ops.DoubleAndObjectToObject,%20extra166y.ParallelArrayWithMapping)">withMapping</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>combiner</code> - the combiner</dd><dd><code>other</code> - the other array</dd>
<dt><span class="strong">Returns:</span></dt><dd>operation prefix</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if other array is a
 filtered view (all filters must precede all mappings).</dd></dl>
</li>
</ul>
<a name="withMapping(extra166y.Ops.DoubleAndDoubleToObject, extra166y.ParallelDoubleArrayWithDoubleMapping)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>withMapping</h4>
<pre>public&nbsp;&lt;V&gt;&nbsp;<a href="../extra166y/ParallelDoubleArrayWithMapping.html" title="class in extra166y">ParallelDoubleArrayWithMapping</a>&lt;V&gt;&nbsp;withMapping(<a href="../extra166y/Ops.DoubleAndDoubleToObject.html" title="interface in extra166y">Ops.DoubleAndDoubleToObject</a>&lt;? extends V&gt;&nbsp;combiner,
                                                <a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a>&nbsp;other)</pre>
<div class="block">Returns an operation prefix that causes a method to operate
 on binary mappings of this array and the other array.</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html#withMapping(extra166y.Ops.DoubleAndDoubleToObject,%20extra166y.ParallelDoubleArrayWithDoubleMapping)">withMapping</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>combiner</code> - the combiner</dd><dd><code>other</code> - the other array</dd>
<dt><span class="strong">Returns:</span></dt><dd>operation prefix</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if other array is a
 filtered view (all filters must precede all mappings).</dd></dl>
</li>
</ul>
<a name="withMapping(extra166y.Ops.DoubleAndLongToObject, extra166y.ParallelLongArrayWithLongMapping)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>withMapping</h4>
<pre>public&nbsp;&lt;V&gt;&nbsp;<a href="../extra166y/ParallelDoubleArrayWithMapping.html" title="class in extra166y">ParallelDoubleArrayWithMapping</a>&lt;V&gt;&nbsp;withMapping(<a href="../extra166y/Ops.DoubleAndLongToObject.html" title="interface in extra166y">Ops.DoubleAndLongToObject</a>&lt;? extends V&gt;&nbsp;combiner,
                                                <a href="../extra166y/ParallelLongArrayWithLongMapping.html" title="class in extra166y">ParallelLongArrayWithLongMapping</a>&nbsp;other)</pre>
<div class="block">Returns an operation prefix that causes a method to operate
 on binary mappings of this array and the other array.</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html#withMapping(extra166y.Ops.DoubleAndLongToObject,%20extra166y.ParallelLongArrayWithLongMapping)">withMapping</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>combiner</code> - the combiner</dd><dd><code>other</code> - the other array</dd>
<dt><span class="strong">Returns:</span></dt><dd>operation prefix</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if other array is a
 filtered view (all filters must precede all mappings).</dd></dl>
</li>
</ul>
<a name="withMapping(extra166y.Ops.DoubleAndObjectToDouble, extra166y.ParallelArrayWithMapping)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>withMapping</h4>
<pre>public&nbsp;&lt;V,W&gt;&nbsp;<a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a>&nbsp;withMapping(<a href="../extra166y/Ops.DoubleAndObjectToDouble.html" title="interface in extra166y">Ops.DoubleAndObjectToDouble</a>&lt;? super V&gt;&nbsp;combiner,
                                                     <a href="../extra166y/ParallelArrayWithMapping.html" title="class in extra166y">ParallelArrayWithMapping</a>&lt;W,V&gt;&nbsp;other)</pre>
<div class="block">Returns an operation prefix that causes a method to operate
 on binary mappings of this array and the other array.</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html#withMapping(extra166y.Ops.DoubleAndObjectToDouble,%20extra166y.ParallelArrayWithMapping)">withMapping</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>combiner</code> - the combiner</dd><dd><code>other</code> - the other array</dd>
<dt><span class="strong">Returns:</span></dt><dd>operation prefix</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if other array is a
 filtered view (all filters must precede all mappings).</dd></dl>
</li>
</ul>
<a name="withMapping(extra166y.Ops.BinaryDoubleOp, extra166y.ParallelDoubleArrayWithDoubleMapping)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>withMapping</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a>&nbsp;withMapping(<a href="../extra166y/Ops.BinaryDoubleOp.html" title="interface in extra166y">Ops.BinaryDoubleOp</a>&nbsp;combiner,
                                               <a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a>&nbsp;other)</pre>
<div class="block">Returns an operation prefix that causes a method to operate
 on binary mappings of this array and the other array.</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html#withMapping(extra166y.Ops.BinaryDoubleOp,%20extra166y.ParallelDoubleArrayWithDoubleMapping)">withMapping</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>combiner</code> - the combiner</dd><dd><code>other</code> - the other array</dd>
<dt><span class="strong">Returns:</span></dt><dd>operation prefix</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if other array is a
 filtered view (all filters must precede all mappings).</dd></dl>
</li>
</ul>
<a name="withMapping(extra166y.Ops.DoubleAndLongToDouble, extra166y.ParallelLongArrayWithLongMapping)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>withMapping</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a>&nbsp;withMapping(<a href="../extra166y/Ops.DoubleAndLongToDouble.html" title="interface in extra166y">Ops.DoubleAndLongToDouble</a>&nbsp;combiner,
                                               <a href="../extra166y/ParallelLongArrayWithLongMapping.html" title="class in extra166y">ParallelLongArrayWithLongMapping</a>&nbsp;other)</pre>
<div class="block">Returns an operation prefix that causes a method to operate
 on binary mappings of this array and the other array.</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html#withMapping(extra166y.Ops.DoubleAndLongToDouble,%20extra166y.ParallelLongArrayWithLongMapping)">withMapping</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>combiner</code> - the combiner</dd><dd><code>other</code> - the other array</dd>
<dt><span class="strong">Returns:</span></dt><dd>operation prefix</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if other array is a
 filtered view (all filters must precede all mappings).</dd></dl>
</li>
</ul>
<a name="withMapping(extra166y.Ops.DoubleAndObjectToLong, extra166y.ParallelArrayWithMapping)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>withMapping</h4>
<pre>public&nbsp;&lt;V,W&gt;&nbsp;<a href="../extra166y/ParallelDoubleArrayWithLongMapping.html" title="class in extra166y">ParallelDoubleArrayWithLongMapping</a>&nbsp;withMapping(<a href="../extra166y/Ops.DoubleAndObjectToLong.html" title="interface in extra166y">Ops.DoubleAndObjectToLong</a>&lt;? super V&gt;&nbsp;combiner,
                                                   <a href="../extra166y/ParallelArrayWithMapping.html" title="class in extra166y">ParallelArrayWithMapping</a>&lt;W,V&gt;&nbsp;other)</pre>
<div class="block">Returns an operation prefix that causes a method to operate
 on binary mappings of this array and the other array.</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html#withMapping(extra166y.Ops.DoubleAndObjectToLong,%20extra166y.ParallelArrayWithMapping)">withMapping</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>combiner</code> - the combiner</dd><dd><code>other</code> - the other array</dd>
<dt><span class="strong">Returns:</span></dt><dd>operation prefix</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if other array is a
 filtered view (all filters must precede all mappings).</dd></dl>
</li>
</ul>
<a name="withMapping(extra166y.Ops.DoubleAndDoubleToLong, extra166y.ParallelDoubleArrayWithDoubleMapping)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>withMapping</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArrayWithLongMapping.html" title="class in extra166y">ParallelDoubleArrayWithLongMapping</a>&nbsp;withMapping(<a href="../extra166y/Ops.DoubleAndDoubleToLong.html" title="interface in extra166y">Ops.DoubleAndDoubleToLong</a>&nbsp;combiner,
                                             <a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a>&nbsp;other)</pre>
<div class="block">Returns an operation prefix that causes a method to operate
 on binary mappings of this array and the other array.</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html#withMapping(extra166y.Ops.DoubleAndDoubleToLong,%20extra166y.ParallelDoubleArrayWithDoubleMapping)">withMapping</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>combiner</code> - the combiner</dd><dd><code>other</code> - the other array</dd>
<dt><span class="strong">Returns:</span></dt><dd>operation prefix</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if other array is a
 filtered view (all filters must precede all mappings).</dd></dl>
</li>
</ul>
<a name="withMapping(extra166y.Ops.DoubleAndLongToLong, extra166y.ParallelLongArrayWithLongMapping)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>withMapping</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArrayWithLongMapping.html" title="class in extra166y">ParallelDoubleArrayWithLongMapping</a>&nbsp;withMapping(<a href="../extra166y/Ops.DoubleAndLongToLong.html" title="interface in extra166y">Ops.DoubleAndLongToLong</a>&nbsp;combiner,
                                             <a href="../extra166y/ParallelLongArrayWithLongMapping.html" title="class in extra166y">ParallelLongArrayWithLongMapping</a>&nbsp;other)</pre>
<div class="block">Returns an operation prefix that causes a method to operate
 on binary mappings of this array and the other array.</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html#withMapping(extra166y.Ops.DoubleAndLongToLong,%20extra166y.ParallelLongArrayWithLongMapping)">withMapping</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>combiner</code> - the combiner</dd><dd><code>other</code> - the other array</dd>
<dt><span class="strong">Returns:</span></dt><dd>operation prefix</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if other array is a
 filtered view (all filters must precede all mappings).</dd></dl>
</li>
</ul>
<a name="withIndexedMapping(extra166y.Ops.IntAndDoubleToObject)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>withIndexedMapping</h4>
<pre>public&nbsp;&lt;U&gt;&nbsp;<a href="../extra166y/ParallelDoubleArrayWithMapping.html" title="class in extra166y">ParallelDoubleArrayWithMapping</a>&lt;U&gt;&nbsp;withIndexedMapping(<a href="../extra166y/Ops.IntAndDoubleToObject.html" title="interface in extra166y">Ops.IntAndDoubleToObject</a>&lt;? extends U&gt;&nbsp;mapper)</pre>
<div class="block">Returns an operation prefix that causes a method to operate on
 mappings of this array using the given mapper that accepts as
 arguments an element's current index and value, and produces a
 new value.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>mapper</code> - the mapper</dd>
<dt><span class="strong">Returns:</span></dt><dd>operation prefix</dd></dl>
</li>
</ul>
<a name="withIndexedMapping(extra166y.Ops.IntAndDoubleToDouble)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>withIndexedMapping</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArrayWithDoubleMapping.html" title="class in extra166y">ParallelDoubleArrayWithDoubleMapping</a>&nbsp;withIndexedMapping(<a href="../extra166y/Ops.IntAndDoubleToDouble.html" title="interface in extra166y">Ops.IntAndDoubleToDouble</a>&nbsp;mapper)</pre>
<div class="block">Returns an operation prefix that causes a method to operate on
 mappings of this array using the given mapper that accepts as
 arguments an element's current index and value, and produces a
 new value.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>mapper</code> - the mapper</dd>
<dt><span class="strong">Returns:</span></dt><dd>operation prefix</dd></dl>
</li>
</ul>
<a name="withIndexedMapping(extra166y.Ops.IntAndDoubleToLong)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>withIndexedMapping</h4>
<pre>public&nbsp;<a href="../extra166y/ParallelDoubleArrayWithLongMapping.html" title="class in extra166y">ParallelDoubleArrayWithLongMapping</a>&nbsp;withIndexedMapping(<a href="../extra166y/Ops.IntAndDoubleToLong.html" title="interface in extra166y">Ops.IntAndDoubleToLong</a>&nbsp;mapper)</pre>
<div class="block">Returns an operation prefix that causes a method to operate on
 mappings of this array using the given mapper that accepts as
 arguments an element's current index and value, and produces a
 new value.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>mapper</code> - the mapper</dd>
<dt><span class="strong">Returns:</span></dt><dd>operation prefix</dd></dl>
</li>
</ul>
<a name="iterator()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>iterator</h4>
<pre>public&nbsp;java.util.Iterator&lt;java.lang.Double&gt;&nbsp;iterator()</pre>
<div class="block">Returns an iterator stepping through each element of the array
 up to the current limit. This iterator does <em>not</em>
 support the remove operation. However, a full
 <tt>ListIterator</tt> supporting add, remove, and set
 operations is available via <a href="../extra166y/ParallelDoubleArray.html#asList()"><code>asList()</code></a>.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>an iterator stepping through each element.</dd></dl>
</li>
</ul>
<a name="asList()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>asList</h4>
<pre>public&nbsp;java.util.List&lt;java.lang.Double&gt;&nbsp;asList()</pre>
<div class="block">Returns a view of this ParallelDoubleArray as a List. This List
 has the same structural and performance characteristics as
 <code>ArrayList</code>, and may be used to modify, replace or extend
 the bounds of the array underlying this ParallelDoubleArray.
 The methods supported by this list view are <em>not</em> in
 general implemented as parallel operations. This list is also
 not itself thread-safe.  In particular, performing list updates
 while other parallel operations are in progress has undefined
 (and surely undesired) effects.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>a list view</dd></dl>
</li>
</ul>
<a name="size()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>size</h4>
<pre>public&nbsp;int&nbsp;size()</pre>
<div class="block">Returns the effective size of the underlying array. The
 effective size is the current limit, if used (see <a href="../extra166y/ParallelDoubleArray.html#setLimit(int)"><code>setLimit(int)</code></a>), or the length of the array otherwise.</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../extra166y/AbstractParallelAnyArray.html#size()">size</a></code>&nbsp;in class&nbsp;<code><a href="../extra166y/AbstractParallelAnyArray.html" title="class in extra166y">AbstractParallelAnyArray</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>the effective size of array</dd></dl>
</li>
</ul>
<a name="getArray()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getArray</h4>
<pre>public&nbsp;double[]&nbsp;getArray()</pre>
<div class="block">Returns the underlying array used for computations</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the array</dd></dl>
</li>
</ul>
<a name="get(int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>get</h4>
<pre>public&nbsp;double&nbsp;get(int&nbsp;i)</pre>
<div class="block">Returns the element of the array at the given index</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>i</code> - the index</dd>
<dt><span class="strong">Returns:</span></dt><dd>the element of the array at the given index</dd></dl>
</li>
</ul>
<a name="set(int, double)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>set</h4>
<pre>public&nbsp;void&nbsp;set(int&nbsp;i,
       double&nbsp;x)</pre>
<div class="block">Sets the element of the array at the given index to the given value</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>i</code> - the index</dd><dd><code>x</code> - the value</dd></dl>
</li>
</ul>
<a name="toString()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toString</h4>
<pre>public&nbsp;java.lang.String&nbsp;toString()</pre>
<div class="block">Equivalent to <tt>asList().toString()</tt></div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code>toString</code>&nbsp;in class&nbsp;<code>java.lang.Object</code></dd>
<dt><span class="strong">Returns:</span></dt><dd>a string representation</dd></dl>
</li>
</ul>
<a name="setLimit(int)">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>setLimit</h4>
<pre>public final&nbsp;void&nbsp;setLimit(int&nbsp;newLimit)</pre>
<div class="block">Ensures that the underlying array can be accessed up to the
 given upper bound, reallocating and copying the underlying
 array to expand if necessary. Or, if the given limit is less
 than the length of the underlying array, causes computations to
 ignore elements past the given limit.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>newLimit</code> - the new upper bound</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if newLimit less than zero.</dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!--   -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../extra166y/package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li><a href="../index-all.html">Index</a></li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../extra166y/ParallelArrayWithMapping.html" title="class in extra166y"><span class="strong">Prev Class</span></a></li>
<li><a href="../extra166y/ParallelDoubleArray.SummaryStatistics.html" title="interface in extra166y"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?extra166y/ParallelDoubleArray.html" target="_top">Frames</a></li>
<li><a href="ParallelDoubleArray.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_bottom");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested_class_summary">Nested</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!--   -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>