gremlin 3.7.5 → 3.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/README.md +1 -1
  2. package/doc/AnonymousTraversalSource.html +82 -20
  3. package/doc/Authenticator.html +2 -2
  4. package/doc/Bytecode.html +2 -2
  5. package/doc/CardinalityValue.html +6 -6
  6. package/doc/Client.html +2 -2
  7. package/doc/Connection.html +5 -5
  8. package/doc/DriverRemoteConnection.html +2 -2
  9. package/doc/EdgeLabelVerificationStrategy.html +3 -17
  10. package/doc/Graph.html +2 -2
  11. package/doc/GraphSON2Reader.html +2 -2
  12. package/doc/GraphSON2Writer.html +2 -2
  13. package/doc/GraphSON3Reader.html +2 -2
  14. package/doc/GraphSON3Writer.html +2 -2
  15. package/doc/GraphTraversal.html +667 -333
  16. package/doc/GraphTraversalSource.html +23 -174
  17. package/doc/HaltedTraverserStrategy.html +2 -2
  18. package/doc/MatchAlgorithmStrategy.html +3 -3
  19. package/doc/P.html +147 -2
  20. package/doc/PartitionStrategy.html +3 -3
  21. package/doc/Path.html +3 -3
  22. package/doc/PlainTextSaslAuthenticator.html +2 -2
  23. package/doc/ProductiveByStrategy.html +7 -37
  24. package/doc/RemoteConnection.html +2 -2
  25. package/doc/RemoteStrategy.html +2 -2
  26. package/doc/RemoteTraversal.html +2 -2
  27. package/doc/ReservedKeysVerificationStrategy.html +3 -21
  28. package/doc/ResponseError.html +2 -2
  29. package/doc/ResultSet.html +2 -2
  30. package/doc/SaslAuthenticator.html +2 -2
  31. package/doc/SaslMechanismBase.html +2 -2
  32. package/doc/SaslMechanismPlain.html +2 -2
  33. package/doc/SeedStrategy.html +3 -3
  34. package/doc/SubgraphStrategy.html +3 -3
  35. package/doc/TextP.html +12 -12
  36. package/doc/Transaction.html +2 -2
  37. package/doc/Translator.html +2 -2
  38. package/doc/TraversalStrategies.html +2 -2
  39. package/doc/TraversalStrategy.html +2 -2
  40. package/doc/TypeSerializer.html +2 -2
  41. package/doc/driver_auth_authenticator.js.html +2 -2
  42. package/doc/driver_auth_mechanisms_sasl-mechanism-base.js.html +2 -2
  43. package/doc/driver_auth_mechanisms_sasl-mechanism-plain.js.html +2 -2
  44. package/doc/driver_auth_plain-text-sasl-authenticator.js.html +2 -2
  45. package/doc/driver_auth_sasl-authenticator.js.html +2 -2
  46. package/doc/driver_client.js.html +2 -2
  47. package/doc/driver_connection.js.html +9 -6
  48. package/doc/driver_driver-remote-connection.js.html +2 -2
  49. package/doc/driver_remote-connection.js.html +2 -2
  50. package/doc/driver_response-error.js.html +2 -2
  51. package/doc/driver_result-set.js.html +2 -2
  52. package/doc/global.html +91 -3
  53. package/doc/index.html +3 -3
  54. package/doc/module.exports.html +2 -2
  55. package/doc/process_anonymous-traversal.js.html +28 -18
  56. package/doc/process_bytecode.js.html +2 -2
  57. package/doc/process_graph-traversal.js.html +35 -34
  58. package/doc/process_transaction.js.html +2 -2
  59. package/doc/process_translator.js.html +2 -2
  60. package/doc/process_traversal-strategy.js.html +95 -33
  61. package/doc/process_traversal.js.html +21 -4
  62. package/doc/structure_graph.js.html +11 -21
  63. package/doc/structure_io_binary_internals_DataType.js.html +3 -2
  64. package/doc/structure_io_binary_internals_GraphBinaryReader.js.html +2 -2
  65. package/doc/structure_io_binary_internals_GraphBinaryWriter.js.html +2 -2
  66. package/doc/structure_io_graph-serializer.js.html +5 -3
  67. package/doc/structure_io_type-serializers.js.html +70 -8
  68. package/doc/utils.js.html +3 -3
  69. package/docker-compose.yml +2 -1
  70. package/lib/driver/connection.js +7 -4
  71. package/lib/process/anonymous-traversal.js +26 -16
  72. package/lib/process/graph-traversal.js +33 -32
  73. package/lib/process/traversal-strategy.js +93 -31
  74. package/lib/process/traversal.js +19 -2
  75. package/lib/structure/graph.js +9 -19
  76. package/lib/structure/io/binary/GraphBinary.js +3 -2
  77. package/lib/structure/io/binary/internals/AnySerializer.js +3 -0
  78. package/lib/structure/io/binary/internals/ClassSerializer.js +60 -0
  79. package/lib/structure/io/binary/internals/DataType.js +1 -0
  80. package/lib/structure/io/binary/internals/EnumSerializer.js +1 -0
  81. package/lib/structure/io/binary/internals/NumberSerializationStrategy.js +6 -1
  82. package/lib/structure/io/binary/internals/OffsetDateTimeSerializer.js +151 -0
  83. package/lib/structure/io/binary/internals/SetSerializer.js +134 -0
  84. package/lib/structure/io/binary/internals/TraversalStrategySerializer.js +1 -6
  85. package/lib/structure/io/graph-serializer.js +3 -1
  86. package/lib/structure/io/type-serializers.js +68 -6
  87. package/lib/utils.js +1 -1
  88. package/package.json +10 -6
@@ -93,7 +93,7 @@
93
93
 
94
94
  <dt class="tag-source">Source:</dt>
95
95
  <dd class="tag-source"><ul class="dummy"><li>
96
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line355">line 355</a>
96
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line334">line 334</a>
97
97
  </li></ul></dd>
98
98
 
99
99
 
@@ -262,7 +262,7 @@
262
262
 
263
263
  <dt class="tag-source">Source:</dt>
264
264
  <dd class="tag-source"><ul class="dummy"><li>
265
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line392">line 392</a>
265
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line371">line 371</a>
266
266
  </li></ul></dd>
267
267
 
268
268
 
@@ -429,7 +429,7 @@
429
429
 
430
430
  <dt class="tag-source">Source:</dt>
431
431
  <dd class="tag-source"><ul class="dummy"><li>
432
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line402">line 402</a>
432
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line381">line 381</a>
433
433
  </li></ul></dd>
434
434
 
435
435
 
@@ -596,7 +596,7 @@
596
596
 
597
597
  <dt class="tag-source">Source:</dt>
598
598
  <dd class="tag-source"><ul class="dummy"><li>
599
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line412">line 412</a>
599
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line391">line 391</a>
600
600
  </li></ul></dd>
601
601
 
602
602
 
@@ -763,7 +763,7 @@
763
763
 
764
764
  <dt class="tag-source">Source:</dt>
765
765
  <dd class="tag-source"><ul class="dummy"><li>
766
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line422">line 422</a>
766
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line401">line 401</a>
767
767
  </li></ul></dd>
768
768
 
769
769
 
@@ -930,7 +930,7 @@
930
930
 
931
931
  <dt class="tag-source">Source:</dt>
932
932
  <dd class="tag-source"><ul class="dummy"><li>
933
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line432">line 432</a>
933
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line411">line 411</a>
934
934
  </li></ul></dd>
935
935
 
936
936
 
@@ -1097,7 +1097,7 @@
1097
1097
 
1098
1098
  <dt class="tag-source">Source:</dt>
1099
1099
  <dd class="tag-source"><ul class="dummy"><li>
1100
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line442">line 442</a>
1100
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line421">line 421</a>
1101
1101
  </li></ul></dd>
1102
1102
 
1103
1103
 
@@ -1264,7 +1264,174 @@
1264
1264
 
1265
1265
  <dt class="tag-source">Source:</dt>
1266
1266
  <dd class="tag-source"><ul class="dummy"><li>
1267
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line452">line 452</a>
1267
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line431">line 431</a>
1268
+ </li></ul></dd>
1269
+
1270
+
1271
+
1272
+
1273
+
1274
+
1275
+
1276
+ </dl>
1277
+
1278
+
1279
+
1280
+
1281
+
1282
+
1283
+
1284
+
1285
+
1286
+
1287
+
1288
+
1289
+
1290
+
1291
+
1292
+ <h5>Returns:</h5>
1293
+
1294
+
1295
+
1296
+
1297
+ <dl>
1298
+ <dt>
1299
+ Type
1300
+ </dt>
1301
+ <dd>
1302
+
1303
+ <span class="param-type"><a href="GraphTraversal.html">GraphTraversal</a></span>
1304
+
1305
+
1306
+ </dd>
1307
+ </dl>
1308
+
1309
+
1310
+
1311
+
1312
+
1313
+
1314
+
1315
+
1316
+
1317
+
1318
+
1319
+
1320
+
1321
+ <h4 class="name" id="asBool"><span class="type-signature"></span>asBool<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
1322
+
1323
+
1324
+
1325
+
1326
+
1327
+
1328
+ <div class="description">
1329
+ Graph traversal asBool method.
1330
+ </div>
1331
+
1332
+
1333
+
1334
+
1335
+
1336
+
1337
+
1338
+
1339
+
1340
+ <h5>Parameters:</h5>
1341
+
1342
+
1343
+ <table class="params">
1344
+ <thead>
1345
+ <tr>
1346
+
1347
+ <th>Name</th>
1348
+
1349
+
1350
+ <th>Type</th>
1351
+
1352
+
1353
+ <th>Attributes</th>
1354
+
1355
+
1356
+
1357
+
1358
+ <th class="last">Description</th>
1359
+ </tr>
1360
+ </thead>
1361
+
1362
+ <tbody>
1363
+
1364
+
1365
+ <tr>
1366
+
1367
+ <td class="name"><code>args</code></td>
1368
+
1369
+
1370
+ <td class="type">
1371
+
1372
+
1373
+ <span class="param-type">Object</span>
1374
+
1375
+
1376
+
1377
+ </td>
1378
+
1379
+
1380
+ <td class="attributes">
1381
+
1382
+
1383
+
1384
+
1385
+
1386
+ &lt;repeatable><br>
1387
+
1388
+ </td>
1389
+
1390
+
1391
+
1392
+
1393
+ <td class="description last"></td>
1394
+ </tr>
1395
+
1396
+
1397
+ </tbody>
1398
+ </table>
1399
+
1400
+
1401
+
1402
+
1403
+
1404
+
1405
+ <dl class="details">
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
+ <dt class="tag-source">Source:</dt>
1433
+ <dd class="tag-source"><ul class="dummy"><li>
1434
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line441">line 441</a>
1268
1435
  </li></ul></dd>
1269
1436
 
1270
1437
 
@@ -1431,7 +1598,174 @@
1431
1598
 
1432
1599
  <dt class="tag-source">Source:</dt>
1433
1600
  <dd class="tag-source"><ul class="dummy"><li>
1434
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line462">line 462</a>
1601
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line451">line 451</a>
1602
+ </li></ul></dd>
1603
+
1604
+
1605
+
1606
+
1607
+
1608
+
1609
+
1610
+ </dl>
1611
+
1612
+
1613
+
1614
+
1615
+
1616
+
1617
+
1618
+
1619
+
1620
+
1621
+
1622
+
1623
+
1624
+
1625
+
1626
+ <h5>Returns:</h5>
1627
+
1628
+
1629
+
1630
+
1631
+ <dl>
1632
+ <dt>
1633
+ Type
1634
+ </dt>
1635
+ <dd>
1636
+
1637
+ <span class="param-type"><a href="GraphTraversal.html">GraphTraversal</a></span>
1638
+
1639
+
1640
+ </dd>
1641
+ </dl>
1642
+
1643
+
1644
+
1645
+
1646
+
1647
+
1648
+
1649
+
1650
+
1651
+
1652
+
1653
+
1654
+
1655
+ <h4 class="name" id="asNumber"><span class="type-signature"></span>asNumber<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
1656
+
1657
+
1658
+
1659
+
1660
+
1661
+
1662
+ <div class="description">
1663
+ Graph traversal asNumber method.
1664
+ </div>
1665
+
1666
+
1667
+
1668
+
1669
+
1670
+
1671
+
1672
+
1673
+
1674
+ <h5>Parameters:</h5>
1675
+
1676
+
1677
+ <table class="params">
1678
+ <thead>
1679
+ <tr>
1680
+
1681
+ <th>Name</th>
1682
+
1683
+
1684
+ <th>Type</th>
1685
+
1686
+
1687
+ <th>Attributes</th>
1688
+
1689
+
1690
+
1691
+
1692
+ <th class="last">Description</th>
1693
+ </tr>
1694
+ </thead>
1695
+
1696
+ <tbody>
1697
+
1698
+
1699
+ <tr>
1700
+
1701
+ <td class="name"><code>args</code></td>
1702
+
1703
+
1704
+ <td class="type">
1705
+
1706
+
1707
+ <span class="param-type">Object</span>
1708
+
1709
+
1710
+
1711
+ </td>
1712
+
1713
+
1714
+ <td class="attributes">
1715
+
1716
+
1717
+
1718
+
1719
+
1720
+ &lt;repeatable><br>
1721
+
1722
+ </td>
1723
+
1724
+
1725
+
1726
+
1727
+ <td class="description last"></td>
1728
+ </tr>
1729
+
1730
+
1731
+ </tbody>
1732
+ </table>
1733
+
1734
+
1735
+
1736
+
1737
+
1738
+
1739
+ <dl class="details">
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
+ <dt class="tag-source">Source:</dt>
1767
+ <dd class="tag-source"><ul class="dummy"><li>
1768
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line461">line 461</a>
1435
1769
  </li></ul></dd>
1436
1770
 
1437
1771
 
@@ -1598,7 +1932,7 @@
1598
1932
 
1599
1933
  <dt class="tag-source">Source:</dt>
1600
1934
  <dd class="tag-source"><ul class="dummy"><li>
1601
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line472">line 472</a>
1935
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line471">line 471</a>
1602
1936
  </li></ul></dd>
1603
1937
 
1604
1938
 
@@ -1765,7 +2099,7 @@
1765
2099
 
1766
2100
  <dt class="tag-source">Source:</dt>
1767
2101
  <dd class="tag-source"><ul class="dummy"><li>
1768
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line482">line 482</a>
2102
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line481">line 481</a>
1769
2103
  </li></ul></dd>
1770
2104
 
1771
2105
 
@@ -1932,7 +2266,7 @@
1932
2266
 
1933
2267
  <dt class="tag-source">Source:</dt>
1934
2268
  <dd class="tag-source"><ul class="dummy"><li>
1935
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line492">line 492</a>
2269
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line491">line 491</a>
1936
2270
  </li></ul></dd>
1937
2271
 
1938
2272
 
@@ -2099,7 +2433,7 @@
2099
2433
 
2100
2434
  <dt class="tag-source">Source:</dt>
2101
2435
  <dd class="tag-source"><ul class="dummy"><li>
2102
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line502">line 502</a>
2436
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line501">line 501</a>
2103
2437
  </li></ul></dd>
2104
2438
 
2105
2439
 
@@ -2266,7 +2600,7 @@
2266
2600
 
2267
2601
  <dt class="tag-source">Source:</dt>
2268
2602
  <dd class="tag-source"><ul class="dummy"><li>
2269
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line512">line 512</a>
2603
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line511">line 511</a>
2270
2604
  </li></ul></dd>
2271
2605
 
2272
2606
 
@@ -2433,7 +2767,7 @@
2433
2767
 
2434
2768
  <dt class="tag-source">Source:</dt>
2435
2769
  <dd class="tag-source"><ul class="dummy"><li>
2436
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line522">line 522</a>
2770
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line521">line 521</a>
2437
2771
  </li></ul></dd>
2438
2772
 
2439
2773
 
@@ -2600,7 +2934,7 @@
2600
2934
 
2601
2935
  <dt class="tag-source">Source:</dt>
2602
2936
  <dd class="tag-source"><ul class="dummy"><li>
2603
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line532">line 532</a>
2937
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line531">line 531</a>
2604
2938
  </li></ul></dd>
2605
2939
 
2606
2940
 
@@ -2767,7 +3101,7 @@
2767
3101
 
2768
3102
  <dt class="tag-source">Source:</dt>
2769
3103
  <dd class="tag-source"><ul class="dummy"><li>
2770
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line542">line 542</a>
3104
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line541">line 541</a>
2771
3105
  </li></ul></dd>
2772
3106
 
2773
3107
 
@@ -2934,7 +3268,7 @@
2934
3268
 
2935
3269
  <dt class="tag-source">Source:</dt>
2936
3270
  <dd class="tag-source"><ul class="dummy"><li>
2937
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line551">line 551</a>
3271
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line550">line 550</a>
2938
3272
  </li></ul></dd>
2939
3273
 
2940
3274
 
@@ -3101,7 +3435,7 @@
3101
3435
 
3102
3436
  <dt class="tag-source">Source:</dt>
3103
3437
  <dd class="tag-source"><ul class="dummy"><li>
3104
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line561">line 561</a>
3438
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line560">line 560</a>
3105
3439
  </li></ul></dd>
3106
3440
 
3107
3441
 
@@ -3162,16 +3496,165 @@
3162
3496
 
3163
3497
 
3164
3498
 
3165
- <div class="description">
3166
- Copy a traversal so as to reset and re-use it.
3167
- </div>
3499
+ <div class="description">
3500
+ Copy a traversal so as to reset and re-use it.
3501
+ </div>
3502
+
3503
+
3504
+
3505
+
3506
+
3507
+
3508
+
3509
+
3510
+
3511
+
3512
+
3513
+
3514
+
3515
+ <dl class="details">
3516
+
3517
+
3518
+
3519
+
3520
+
3521
+
3522
+
3523
+
3524
+
3525
+
3526
+
3527
+
3528
+
3529
+
3530
+
3531
+
3532
+
3533
+
3534
+
3535
+
3536
+
3537
+
3538
+
3539
+
3540
+
3541
+
3542
+ <dt class="tag-source">Source:</dt>
3543
+ <dd class="tag-source"><ul class="dummy"><li>
3544
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line342">line 342</a>
3545
+ </li></ul></dd>
3546
+
3547
+
3548
+
3549
+
3550
+
3551
+
3552
+
3553
+ </dl>
3554
+
3555
+
3556
+
3557
+
3558
+
3559
+
3560
+
3561
+
3562
+
3563
+
3564
+
3565
+
3566
+
3567
+
3568
+
3569
+
3570
+
3571
+
3572
+
3573
+
3574
+
3575
+
3576
+
3577
+
3578
+
3579
+
3580
+ <h4 class="name" id="coalesce"><span class="type-signature"></span>coalesce<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
3581
+
3582
+
3583
+
3584
+
3585
+
3586
+
3587
+ <div class="description">
3588
+ Graph traversal coalesce method.
3589
+ </div>
3590
+
3591
+
3592
+
3593
+
3594
+
3595
+
3596
+
3597
+
3598
+
3599
+ <h5>Parameters:</h5>
3600
+
3601
+
3602
+ <table class="params">
3603
+ <thead>
3604
+ <tr>
3605
+
3606
+ <th>Name</th>
3607
+
3608
+
3609
+ <th>Type</th>
3610
+
3611
+
3612
+ <th>Attributes</th>
3613
+
3614
+
3615
+
3616
+
3617
+ <th class="last">Description</th>
3618
+ </tr>
3619
+ </thead>
3620
+
3621
+ <tbody>
3622
+
3623
+
3624
+ <tr>
3625
+
3626
+ <td class="name"><code>args</code></td>
3627
+
3628
+
3629
+ <td class="type">
3630
+
3631
+
3632
+ <span class="param-type">Object</span>
3633
+
3168
3634
 
3635
+
3636
+ </td>
3169
3637
 
3638
+
3639
+ <td class="attributes">
3640
+
3170
3641
 
3642
+
3171
3643
 
3644
+
3645
+ &lt;repeatable><br>
3646
+
3647
+ </td>
3648
+
3172
3649
 
3650
+
3173
3651
 
3652
+ <td class="description last"></td>
3653
+ </tr>
3174
3654
 
3655
+
3656
+ </tbody>
3657
+ </table>
3175
3658
 
3176
3659
 
3177
3660
 
@@ -3207,7 +3690,7 @@
3207
3690
 
3208
3691
  <dt class="tag-source">Source:</dt>
3209
3692
  <dd class="tag-source"><ul class="dummy"><li>
3210
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line363">line 363</a>
3693
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line570">line 570</a>
3211
3694
  </li></ul></dd>
3212
3695
 
3213
3696
 
@@ -3232,6 +3715,24 @@
3232
3715
 
3233
3716
 
3234
3717
 
3718
+ <h5>Returns:</h5>
3719
+
3720
+
3721
+
3722
+
3723
+ <dl>
3724
+ <dt>
3725
+ Type
3726
+ </dt>
3727
+ <dd>
3728
+
3729
+ <span class="param-type"><a href="GraphTraversal.html">GraphTraversal</a></span>
3730
+
3731
+
3732
+ </dd>
3733
+ </dl>
3734
+
3735
+
3235
3736
 
3236
3737
 
3237
3738
 
@@ -3243,7 +3744,7 @@
3243
3744
 
3244
3745
 
3245
3746
 
3246
- <h4 class="name" id="coalesce"><span class="type-signature"></span>coalesce<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
3747
+ <h4 class="name" id="coin"><span class="type-signature"></span>coin<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
3247
3748
 
3248
3749
 
3249
3750
 
@@ -3251,7 +3752,7 @@
3251
3752
 
3252
3753
 
3253
3754
  <div class="description">
3254
- Graph traversal coalesce method.
3755
+ Graph traversal coin method.
3255
3756
  </div>
3256
3757
 
3257
3758
 
@@ -3356,7 +3857,7 @@
3356
3857
 
3357
3858
  <dt class="tag-source">Source:</dt>
3358
3859
  <dd class="tag-source"><ul class="dummy"><li>
3359
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line571">line 571</a>
3860
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line580">line 580</a>
3360
3861
  </li></ul></dd>
3361
3862
 
3362
3863
 
@@ -3410,7 +3911,7 @@
3410
3911
 
3411
3912
 
3412
3913
 
3413
- <h4 class="name" id="coin"><span class="type-signature"></span>coin<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
3914
+ <h4 class="name" id="combine"><span class="type-signature"></span>combine<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
3414
3915
 
3415
3916
 
3416
3917
 
@@ -3418,7 +3919,7 @@
3418
3919
 
3419
3920
 
3420
3921
  <div class="description">
3421
- Graph traversal coin method.
3922
+ Graph traversal combine method.
3422
3923
  </div>
3423
3924
 
3424
3925
 
@@ -3523,7 +4024,7 @@
3523
4024
 
3524
4025
  <dt class="tag-source">Source:</dt>
3525
4026
  <dd class="tag-source"><ul class="dummy"><li>
3526
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line581">line 581</a>
4027
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line590">line 590</a>
3527
4028
  </li></ul></dd>
3528
4029
 
3529
4030
 
@@ -3577,7 +4078,7 @@
3577
4078
 
3578
4079
 
3579
4080
 
3580
- <h4 class="name" id="combine"><span class="type-signature"></span>combine<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
4081
+ <h4 class="name" id="concat"><span class="type-signature"></span>concat<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
3581
4082
 
3582
4083
 
3583
4084
 
@@ -3585,7 +4086,7 @@
3585
4086
 
3586
4087
 
3587
4088
  <div class="description">
3588
- Graph traversal combine method.
4089
+ Graph traversal concat method.
3589
4090
  </div>
3590
4091
 
3591
4092
 
@@ -3690,7 +4191,7 @@
3690
4191
 
3691
4192
  <dt class="tag-source">Source:</dt>
3692
4193
  <dd class="tag-source"><ul class="dummy"><li>
3693
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line591">line 591</a>
4194
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line600">line 600</a>
3694
4195
  </li></ul></dd>
3695
4196
 
3696
4197
 
@@ -3744,7 +4245,7 @@
3744
4245
 
3745
4246
 
3746
4247
 
3747
- <h4 class="name" id="concat"><span class="type-signature"></span>concat<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
4248
+ <h4 class="name" id="conjoin"><span class="type-signature"></span>conjoin<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
3748
4249
 
3749
4250
 
3750
4251
 
@@ -3752,7 +4253,7 @@
3752
4253
 
3753
4254
 
3754
4255
  <div class="description">
3755
- Graph traversal concat method.
4256
+ Graph traversal conjoin method.
3756
4257
  </div>
3757
4258
 
3758
4259
 
@@ -3857,7 +4358,7 @@
3857
4358
 
3858
4359
  <dt class="tag-source">Source:</dt>
3859
4360
  <dd class="tag-source"><ul class="dummy"><li>
3860
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line601">line 601</a>
4361
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line610">line 610</a>
3861
4362
  </li></ul></dd>
3862
4363
 
3863
4364
 
@@ -3911,7 +4412,7 @@
3911
4412
 
3912
4413
 
3913
4414
 
3914
- <h4 class="name" id="conjoin"><span class="type-signature"></span>conjoin<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
4415
+ <h4 class="name" id="connectedComponent"><span class="type-signature"></span>connectedComponent<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
3915
4416
 
3916
4417
 
3917
4418
 
@@ -3919,7 +4420,7 @@
3919
4420
 
3920
4421
 
3921
4422
  <div class="description">
3922
- Graph traversal conjoin method.
4423
+ Graph traversal connectedComponent method.
3923
4424
  </div>
3924
4425
 
3925
4426
 
@@ -4024,7 +4525,7 @@
4024
4525
 
4025
4526
  <dt class="tag-source">Source:</dt>
4026
4527
  <dd class="tag-source"><ul class="dummy"><li>
4027
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line611">line 611</a>
4528
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line620">line 620</a>
4028
4529
  </li></ul></dd>
4029
4530
 
4030
4531
 
@@ -4078,7 +4579,7 @@
4078
4579
 
4079
4580
 
4080
4581
 
4081
- <h4 class="name" id="connectedComponent"><span class="type-signature"></span>connectedComponent<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
4582
+ <h4 class="name" id="constant"><span class="type-signature"></span>constant<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
4082
4583
 
4083
4584
 
4084
4585
 
@@ -4086,7 +4587,7 @@
4086
4587
 
4087
4588
 
4088
4589
  <div class="description">
4089
- Graph traversal connectedComponent method.
4590
+ Graph traversal constant method.
4090
4591
  </div>
4091
4592
 
4092
4593
 
@@ -4191,7 +4692,7 @@
4191
4692
 
4192
4693
  <dt class="tag-source">Source:</dt>
4193
4694
  <dd class="tag-source"><ul class="dummy"><li>
4194
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line621">line 621</a>
4695
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line630">line 630</a>
4195
4696
  </li></ul></dd>
4196
4697
 
4197
4698
 
@@ -4245,7 +4746,7 @@
4245
4746
 
4246
4747
 
4247
4748
 
4248
- <h4 class="name" id="constant"><span class="type-signature"></span>constant<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
4749
+ <h4 class="name" id="count"><span class="type-signature"></span>count<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
4249
4750
 
4250
4751
 
4251
4752
 
@@ -4253,7 +4754,7 @@
4253
4754
 
4254
4755
 
4255
4756
  <div class="description">
4256
- Graph traversal constant method.
4757
+ Graph traversal count method.
4257
4758
  </div>
4258
4759
 
4259
4760
 
@@ -4358,7 +4859,7 @@
4358
4859
 
4359
4860
  <dt class="tag-source">Source:</dt>
4360
4861
  <dd class="tag-source"><ul class="dummy"><li>
4361
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line631">line 631</a>
4862
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line640">line 640</a>
4362
4863
  </li></ul></dd>
4363
4864
 
4364
4865
 
@@ -4412,7 +4913,7 @@
4412
4913
 
4413
4914
 
4414
4915
 
4415
- <h4 class="name" id="count"><span class="type-signature"></span>count<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
4916
+ <h4 class="name" id="cyclicPath"><span class="type-signature"></span>cyclicPath<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
4416
4917
 
4417
4918
 
4418
4919
 
@@ -4420,7 +4921,7 @@
4420
4921
 
4421
4922
 
4422
4923
  <div class="description">
4423
- Graph traversal count method.
4924
+ Graph traversal cyclicPath method.
4424
4925
  </div>
4425
4926
 
4426
4927
 
@@ -4525,7 +5026,7 @@
4525
5026
 
4526
5027
  <dt class="tag-source">Source:</dt>
4527
5028
  <dd class="tag-source"><ul class="dummy"><li>
4528
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line641">line 641</a>
5029
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line650">line 650</a>
4529
5030
  </li></ul></dd>
4530
5031
 
4531
5032
 
@@ -4579,7 +5080,7 @@
4579
5080
 
4580
5081
 
4581
5082
 
4582
- <h4 class="name" id="cyclicPath"><span class="type-signature"></span>cyclicPath<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
5083
+ <h4 class="name" id="dateAdd"><span class="type-signature"></span>dateAdd<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
4583
5084
 
4584
5085
 
4585
5086
 
@@ -4587,7 +5088,7 @@
4587
5088
 
4588
5089
 
4589
5090
  <div class="description">
4590
- Graph traversal cyclicPath method.
5091
+ Graph traversal dateAdd method.
4591
5092
  </div>
4592
5093
 
4593
5094
 
@@ -4692,7 +5193,7 @@
4692
5193
 
4693
5194
  <dt class="tag-source">Source:</dt>
4694
5195
  <dd class="tag-source"><ul class="dummy"><li>
4695
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line651">line 651</a>
5196
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line660">line 660</a>
4696
5197
  </li></ul></dd>
4697
5198
 
4698
5199
 
@@ -4746,7 +5247,7 @@
4746
5247
 
4747
5248
 
4748
5249
 
4749
- <h4 class="name" id="dateAdd"><span class="type-signature"></span>dateAdd<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
5250
+ <h4 class="name" id="dateDiff"><span class="type-signature"></span>dateDiff<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
4750
5251
 
4751
5252
 
4752
5253
 
@@ -4754,7 +5255,7 @@
4754
5255
 
4755
5256
 
4756
5257
  <div class="description">
4757
- Graph traversal dateAdd method.
5258
+ Graph traversal dateDiff method.
4758
5259
  </div>
4759
5260
 
4760
5261
 
@@ -4859,7 +5360,7 @@
4859
5360
 
4860
5361
  <dt class="tag-source">Source:</dt>
4861
5362
  <dd class="tag-source"><ul class="dummy"><li>
4862
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line661">line 661</a>
5363
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line670">line 670</a>
4863
5364
  </li></ul></dd>
4864
5365
 
4865
5366
 
@@ -4913,7 +5414,7 @@
4913
5414
 
4914
5415
 
4915
5416
 
4916
- <h4 class="name" id="dateDiff"><span class="type-signature"></span>dateDiff<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
5417
+ <h4 class="name" id="dedup"><span class="type-signature"></span>dedup<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
4917
5418
 
4918
5419
 
4919
5420
 
@@ -4921,7 +5422,7 @@
4921
5422
 
4922
5423
 
4923
5424
  <div class="description">
4924
- Graph traversal dateDiff method.
5425
+ Graph traversal dedup method.
4925
5426
  </div>
4926
5427
 
4927
5428
 
@@ -5026,7 +5527,7 @@
5026
5527
 
5027
5528
  <dt class="tag-source">Source:</dt>
5028
5529
  <dd class="tag-source"><ul class="dummy"><li>
5029
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line671">line 671</a>
5530
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line680">line 680</a>
5030
5531
  </li></ul></dd>
5031
5532
 
5032
5533
 
@@ -5080,7 +5581,7 @@
5080
5581
 
5081
5582
 
5082
5583
 
5083
- <h4 class="name" id="dedup"><span class="type-signature"></span>dedup<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
5584
+ <h4 class="name" id="difference"><span class="type-signature"></span>difference<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
5084
5585
 
5085
5586
 
5086
5587
 
@@ -5088,7 +5589,7 @@
5088
5589
 
5089
5590
 
5090
5591
  <div class="description">
5091
- Graph traversal dedup method.
5592
+ Graph traversal difference method.
5092
5593
  </div>
5093
5594
 
5094
5595
 
@@ -5193,7 +5694,7 @@
5193
5694
 
5194
5695
  <dt class="tag-source">Source:</dt>
5195
5696
  <dd class="tag-source"><ul class="dummy"><li>
5196
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line681">line 681</a>
5697
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line690">line 690</a>
5197
5698
  </li></ul></dd>
5198
5699
 
5199
5700
 
@@ -5247,7 +5748,7 @@
5247
5748
 
5248
5749
 
5249
5750
 
5250
- <h4 class="name" id="difference"><span class="type-signature"></span>difference<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
5751
+ <h4 class="name" id="discard"><span class="type-signature"></span>discard<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
5251
5752
 
5252
5753
 
5253
5754
 
@@ -5255,7 +5756,7 @@
5255
5756
 
5256
5757
 
5257
5758
  <div class="description">
5258
- Graph traversal difference method.
5759
+ Graph traversal discard method.
5259
5760
  </div>
5260
5761
 
5261
5762
 
@@ -5360,7 +5861,7 @@
5360
5861
 
5361
5862
  <dt class="tag-source">Source:</dt>
5362
5863
  <dd class="tag-source"><ul class="dummy"><li>
5363
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line691">line 691</a>
5864
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line700">line 700</a>
5364
5865
  </li></ul></dd>
5365
5866
 
5366
5867
 
@@ -5527,7 +6028,7 @@
5527
6028
 
5528
6029
  <dt class="tag-source">Source:</dt>
5529
6030
  <dd class="tag-source"><ul class="dummy"><li>
5530
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line701">line 701</a>
6031
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line710">line 710</a>
5531
6032
  </li></ul></dd>
5532
6033
 
5533
6034
 
@@ -5694,7 +6195,7 @@
5694
6195
 
5695
6196
  <dt class="tag-source">Source:</dt>
5696
6197
  <dd class="tag-source"><ul class="dummy"><li>
5697
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line711">line 711</a>
6198
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line720">line 720</a>
5698
6199
  </li></ul></dd>
5699
6200
 
5700
6201
 
@@ -5861,7 +6362,7 @@
5861
6362
 
5862
6363
  <dt class="tag-source">Source:</dt>
5863
6364
  <dd class="tag-source"><ul class="dummy"><li>
5864
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line382">line 382</a>
6365
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line361">line 361</a>
5865
6366
  </li></ul></dd>
5866
6367
 
5867
6368
 
@@ -6028,7 +6529,7 @@
6028
6529
 
6029
6530
  <dt class="tag-source">Source:</dt>
6030
6531
  <dd class="tag-source"><ul class="dummy"><li>
6031
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line721">line 721</a>
6532
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line730">line 730</a>
6032
6533
  </li></ul></dd>
6033
6534
 
6034
6535
 
@@ -6195,7 +6696,7 @@
6195
6696
 
6196
6697
  <dt class="tag-source">Source:</dt>
6197
6698
  <dd class="tag-source"><ul class="dummy"><li>
6198
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line730">line 730</a>
6699
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line739">line 739</a>
6199
6700
  </li></ul></dd>
6200
6701
 
6201
6702
 
@@ -6362,7 +6863,7 @@
6362
6863
 
6363
6864
  <dt class="tag-source">Source:</dt>
6364
6865
  <dd class="tag-source"><ul class="dummy"><li>
6365
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line740">line 740</a>
6866
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line749">line 749</a>
6366
6867
  </li></ul></dd>
6367
6868
 
6368
6869
 
@@ -6529,7 +7030,7 @@
6529
7030
 
6530
7031
  <dt class="tag-source">Source:</dt>
6531
7032
  <dd class="tag-source"><ul class="dummy"><li>
6532
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line750">line 750</a>
7033
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line759">line 759</a>
6533
7034
  </li></ul></dd>
6534
7035
 
6535
7036
 
@@ -6696,7 +7197,7 @@
6696
7197
 
6697
7198
  <dt class="tag-source">Source:</dt>
6698
7199
  <dd class="tag-source"><ul class="dummy"><li>
6699
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line760">line 760</a>
7200
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line769">line 769</a>
6700
7201
  </li></ul></dd>
6701
7202
 
6702
7203
 
@@ -6863,7 +7364,7 @@
6863
7364
 
6864
7365
  <dt class="tag-source">Source:</dt>
6865
7366
  <dd class="tag-source"><ul class="dummy"><li>
6866
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line770">line 770</a>
7367
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line779">line 779</a>
6867
7368
  </li></ul></dd>
6868
7369
 
6869
7370
 
@@ -7030,7 +7531,7 @@
7030
7531
 
7031
7532
  <dt class="tag-source">Source:</dt>
7032
7533
  <dd class="tag-source"><ul class="dummy"><li>
7033
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line780">line 780</a>
7534
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line789">line 789</a>
7034
7535
  </li></ul></dd>
7035
7536
 
7036
7537
 
@@ -7197,7 +7698,7 @@
7197
7698
 
7198
7699
  <dt class="tag-source">Source:</dt>
7199
7700
  <dd class="tag-source"><ul class="dummy"><li>
7200
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line790">line 790</a>
7701
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line799">line 799</a>
7201
7702
  </li></ul></dd>
7202
7703
 
7203
7704
 
@@ -7364,7 +7865,7 @@
7364
7865
 
7365
7866
  <dt class="tag-source">Source:</dt>
7366
7867
  <dd class="tag-source"><ul class="dummy"><li>
7367
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line800">line 800</a>
7868
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line809">line 809</a>
7368
7869
  </li></ul></dd>
7369
7870
 
7370
7871
 
@@ -7531,7 +8032,7 @@
7531
8032
 
7532
8033
  <dt class="tag-source">Source:</dt>
7533
8034
  <dd class="tag-source"><ul class="dummy"><li>
7534
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line810">line 810</a>
8035
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line819">line 819</a>
7535
8036
  </li></ul></dd>
7536
8037
 
7537
8038
 
@@ -7698,7 +8199,7 @@
7698
8199
 
7699
8200
  <dt class="tag-source">Source:</dt>
7700
8201
  <dd class="tag-source"><ul class="dummy"><li>
7701
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line820">line 820</a>
8202
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line829">line 829</a>
7702
8203
  </li></ul></dd>
7703
8204
 
7704
8205
 
@@ -7865,7 +8366,7 @@
7865
8366
 
7866
8367
  <dt class="tag-source">Source:</dt>
7867
8368
  <dd class="tag-source"><ul class="dummy"><li>
7868
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line830">line 830</a>
8369
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line839">line 839</a>
7869
8370
  </li></ul></dd>
7870
8371
 
7871
8372
 
@@ -8032,7 +8533,7 @@
8032
8533
 
8033
8534
  <dt class="tag-source">Source:</dt>
8034
8535
  <dd class="tag-source"><ul class="dummy"><li>
8035
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line840">line 840</a>
8536
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line849">line 849</a>
8036
8537
  </li></ul></dd>
8037
8538
 
8038
8539
 
@@ -8199,7 +8700,7 @@
8199
8700
 
8200
8701
  <dt class="tag-source">Source:</dt>
8201
8702
  <dd class="tag-source"><ul class="dummy"><li>
8202
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line850">line 850</a>
8703
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line859">line 859</a>
8203
8704
  </li></ul></dd>
8204
8705
 
8205
8706
 
@@ -8366,7 +8867,7 @@
8366
8867
 
8367
8868
  <dt class="tag-source">Source:</dt>
8368
8869
  <dd class="tag-source"><ul class="dummy"><li>
8369
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line860">line 860</a>
8870
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line869">line 869</a>
8370
8871
  </li></ul></dd>
8371
8872
 
8372
8873
 
@@ -8533,7 +9034,7 @@
8533
9034
 
8534
9035
  <dt class="tag-source">Source:</dt>
8535
9036
  <dd class="tag-source"><ul class="dummy"><li>
8536
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line870">line 870</a>
9037
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line879">line 879</a>
8537
9038
  </li></ul></dd>
8538
9039
 
8539
9040
 
@@ -8700,7 +9201,7 @@
8700
9201
 
8701
9202
  <dt class="tag-source">Source:</dt>
8702
9203
  <dd class="tag-source"><ul class="dummy"><li>
8703
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line880">line 880</a>
9204
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line889">line 889</a>
8704
9205
  </li></ul></dd>
8705
9206
 
8706
9207
 
@@ -8867,7 +9368,7 @@
8867
9368
 
8868
9369
  <dt class="tag-source">Source:</dt>
8869
9370
  <dd class="tag-source"><ul class="dummy"><li>
8870
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line890">line 890</a>
9371
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line899">line 899</a>
8871
9372
  </li></ul></dd>
8872
9373
 
8873
9374
 
@@ -9034,7 +9535,7 @@
9034
9535
 
9035
9536
  <dt class="tag-source">Source:</dt>
9036
9537
  <dd class="tag-source"><ul class="dummy"><li>
9037
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line900">line 900</a>
9538
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line909">line 909</a>
9038
9539
  </li></ul></dd>
9039
9540
 
9040
9541
 
@@ -9201,7 +9702,7 @@
9201
9702
 
9202
9703
  <dt class="tag-source">Source:</dt>
9203
9704
  <dd class="tag-source"><ul class="dummy"><li>
9204
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line910">line 910</a>
9705
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line919">line 919</a>
9205
9706
  </li></ul></dd>
9206
9707
 
9207
9708
 
@@ -9368,7 +9869,7 @@
9368
9869
 
9369
9870
  <dt class="tag-source">Source:</dt>
9370
9871
  <dd class="tag-source"><ul class="dummy"><li>
9371
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line940">line 940</a>
9872
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line949">line 949</a>
9372
9873
  </li></ul></dd>
9373
9874
 
9374
9875
 
@@ -9535,7 +10036,7 @@
9535
10036
 
9536
10037
  <dt class="tag-source">Source:</dt>
9537
10038
  <dd class="tag-source"><ul class="dummy"><li>
9538
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line920">line 920</a>
10039
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line929">line 929</a>
9539
10040
  </li></ul></dd>
9540
10041
 
9541
10042
 
@@ -9702,7 +10203,7 @@
9702
10203
 
9703
10204
  <dt class="tag-source">Source:</dt>
9704
10205
  <dd class="tag-source"><ul class="dummy"><li>
9705
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line950">line 950</a>
10206
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line959">line 959</a>
9706
10207
  </li></ul></dd>
9707
10208
 
9708
10209
 
@@ -9869,7 +10370,7 @@
9869
10370
 
9870
10371
  <dt class="tag-source">Source:</dt>
9871
10372
  <dd class="tag-source"><ul class="dummy"><li>
9872
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line960">line 960</a>
10373
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line969">line 969</a>
9873
10374
  </li></ul></dd>
9874
10375
 
9875
10376
 
@@ -10036,7 +10537,7 @@
10036
10537
 
10037
10538
  <dt class="tag-source">Source:</dt>
10038
10539
  <dd class="tag-source"><ul class="dummy"><li>
10039
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line930">line 930</a>
10540
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line939">line 939</a>
10040
10541
  </li></ul></dd>
10041
10542
 
10042
10543
 
@@ -10203,7 +10704,7 @@
10203
10704
 
10204
10705
  <dt class="tag-source">Source:</dt>
10205
10706
  <dd class="tag-source"><ul class="dummy"><li>
10206
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line970">line 970</a>
10707
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line979">line 979</a>
10207
10708
  </li></ul></dd>
10208
10709
 
10209
10710
 
@@ -10370,7 +10871,7 @@
10370
10871
 
10371
10872
  <dt class="tag-source">Source:</dt>
10372
10873
  <dd class="tag-source"><ul class="dummy"><li>
10373
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line980">line 980</a>
10874
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line989">line 989</a>
10374
10875
  </li></ul></dd>
10375
10876
 
10376
10877
 
@@ -10537,7 +11038,7 @@
10537
11038
 
10538
11039
  <dt class="tag-source">Source:</dt>
10539
11040
  <dd class="tag-source"><ul class="dummy"><li>
10540
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line990">line 990</a>
11041
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line999">line 999</a>
10541
11042
  </li></ul></dd>
10542
11043
 
10543
11044
 
@@ -10704,7 +11205,7 @@
10704
11205
 
10705
11206
  <dt class="tag-source">Source:</dt>
10706
11207
  <dd class="tag-source"><ul class="dummy"><li>
10707
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1000">line 1000</a>
11208
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1009">line 1009</a>
10708
11209
  </li></ul></dd>
10709
11210
 
10710
11211
 
@@ -10871,7 +11372,7 @@
10871
11372
 
10872
11373
  <dt class="tag-source">Source:</dt>
10873
11374
  <dd class="tag-source"><ul class="dummy"><li>
10874
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1010">line 1010</a>
11375
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1019">line 1019</a>
10875
11376
  </li></ul></dd>
10876
11377
 
10877
11378
 
@@ -11038,7 +11539,7 @@
11038
11539
 
11039
11540
  <dt class="tag-source">Source:</dt>
11040
11541
  <dd class="tag-source"><ul class="dummy"><li>
11041
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1020">line 1020</a>
11542
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1029">line 1029</a>
11042
11543
  </li></ul></dd>
11043
11544
 
11044
11545
 
@@ -11205,7 +11706,7 @@
11205
11706
 
11206
11707
  <dt class="tag-source">Source:</dt>
11207
11708
  <dd class="tag-source"><ul class="dummy"><li>
11208
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1030">line 1030</a>
11709
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1039">line 1039</a>
11209
11710
  </li></ul></dd>
11210
11711
 
11211
11712
 
@@ -11372,7 +11873,7 @@
11372
11873
 
11373
11874
  <dt class="tag-source">Source:</dt>
11374
11875
  <dd class="tag-source"><ul class="dummy"><li>
11375
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1040">line 1040</a>
11876
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1049">line 1049</a>
11376
11877
  </li></ul></dd>
11377
11878
 
11378
11879
 
@@ -11539,7 +12040,7 @@
11539
12040
 
11540
12041
  <dt class="tag-source">Source:</dt>
11541
12042
  <dd class="tag-source"><ul class="dummy"><li>
11542
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1050">line 1050</a>
12043
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1059">line 1059</a>
11543
12044
  </li></ul></dd>
11544
12045
 
11545
12046
 
@@ -11706,7 +12207,7 @@
11706
12207
 
11707
12208
  <dt class="tag-source">Source:</dt>
11708
12209
  <dd class="tag-source"><ul class="dummy"><li>
11709
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1060">line 1060</a>
12210
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1069">line 1069</a>
11710
12211
  </li></ul></dd>
11711
12212
 
11712
12213
 
@@ -11873,7 +12374,7 @@
11873
12374
 
11874
12375
  <dt class="tag-source">Source:</dt>
11875
12376
  <dd class="tag-source"><ul class="dummy"><li>
11876
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1070">line 1070</a>
12377
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1079">line 1079</a>
11877
12378
  </li></ul></dd>
11878
12379
 
11879
12380
 
@@ -12040,7 +12541,7 @@
12040
12541
 
12041
12542
  <dt class="tag-source">Source:</dt>
12042
12543
  <dd class="tag-source"><ul class="dummy"><li>
12043
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1080">line 1080</a>
12544
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1089">line 1089</a>
12044
12545
  </li></ul></dd>
12045
12546
 
12046
12547
 
@@ -12207,7 +12708,7 @@
12207
12708
 
12208
12709
  <dt class="tag-source">Source:</dt>
12209
12710
  <dd class="tag-source"><ul class="dummy"><li>
12210
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1090">line 1090</a>
12711
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1099">line 1099</a>
12211
12712
  </li></ul></dd>
12212
12713
 
12213
12714
 
@@ -12374,7 +12875,7 @@
12374
12875
 
12375
12876
  <dt class="tag-source">Source:</dt>
12376
12877
  <dd class="tag-source"><ul class="dummy"><li>
12377
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1100">line 1100</a>
12878
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1109">line 1109</a>
12378
12879
  </li></ul></dd>
12379
12880
 
12380
12881
 
@@ -12541,7 +13042,7 @@
12541
13042
 
12542
13043
  <dt class="tag-source">Source:</dt>
12543
13044
  <dd class="tag-source"><ul class="dummy"><li>
12544
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1110">line 1110</a>
13045
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1119">line 1119</a>
12545
13046
  </li></ul></dd>
12546
13047
 
12547
13048
 
@@ -12708,7 +13209,7 @@
12708
13209
 
12709
13210
  <dt class="tag-source">Source:</dt>
12710
13211
  <dd class="tag-source"><ul class="dummy"><li>
12711
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1120">line 1120</a>
13212
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1129">line 1129</a>
12712
13213
  </li></ul></dd>
12713
13214
 
12714
13215
 
@@ -12875,7 +13376,7 @@
12875
13376
 
12876
13377
  <dt class="tag-source">Source:</dt>
12877
13378
  <dd class="tag-source"><ul class="dummy"><li>
12878
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1130">line 1130</a>
13379
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1139">line 1139</a>
12879
13380
  </li></ul></dd>
12880
13381
 
12881
13382
 
@@ -13042,7 +13543,7 @@
13042
13543
 
13043
13544
  <dt class="tag-source">Source:</dt>
13044
13545
  <dd class="tag-source"><ul class="dummy"><li>
13045
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1140">line 1140</a>
13546
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1149">line 1149</a>
13046
13547
  </li></ul></dd>
13047
13548
 
13048
13549
 
@@ -13209,7 +13710,7 @@
13209
13710
 
13210
13711
  <dt class="tag-source">Source:</dt>
13211
13712
  <dd class="tag-source"><ul class="dummy"><li>
13212
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1150">line 1150</a>
13713
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1159">line 1159</a>
13213
13714
  </li></ul></dd>
13214
13715
 
13215
13716
 
@@ -13376,7 +13877,7 @@
13376
13877
 
13377
13878
  <dt class="tag-source">Source:</dt>
13378
13879
  <dd class="tag-source"><ul class="dummy"><li>
13379
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1160">line 1160</a>
13880
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1169">line 1169</a>
13380
13881
  </li></ul></dd>
13381
13882
 
13382
13883
 
@@ -13543,7 +14044,7 @@
13543
14044
 
13544
14045
  <dt class="tag-source">Source:</dt>
13545
14046
  <dd class="tag-source"><ul class="dummy"><li>
13546
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1170">line 1170</a>
14047
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1179">line 1179</a>
13547
14048
  </li></ul></dd>
13548
14049
 
13549
14050
 
@@ -13710,7 +14211,7 @@
13710
14211
 
13711
14212
  <dt class="tag-source">Source:</dt>
13712
14213
  <dd class="tag-source"><ul class="dummy"><li>
13713
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1180">line 1180</a>
14214
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1189">line 1189</a>
13714
14215
  </li></ul></dd>
13715
14216
 
13716
14217
 
@@ -13877,7 +14378,7 @@
13877
14378
 
13878
14379
  <dt class="tag-source">Source:</dt>
13879
14380
  <dd class="tag-source"><ul class="dummy"><li>
13880
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1190">line 1190</a>
14381
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1199">line 1199</a>
13881
14382
  </li></ul></dd>
13882
14383
 
13883
14384
 
@@ -14044,7 +14545,7 @@
14044
14545
 
14045
14546
  <dt class="tag-source">Source:</dt>
14046
14547
  <dd class="tag-source"><ul class="dummy"><li>
14047
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1200">line 1200</a>
14548
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1209">line 1209</a>
14048
14549
  </li></ul></dd>
14049
14550
 
14050
14551
 
@@ -14211,7 +14712,7 @@
14211
14712
 
14212
14713
  <dt class="tag-source">Source:</dt>
14213
14714
  <dd class="tag-source"><ul class="dummy"><li>
14214
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1210">line 1210</a>
14715
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1219">line 1219</a>
14215
14716
  </li></ul></dd>
14216
14717
 
14217
14718
 
@@ -14378,7 +14879,7 @@
14378
14879
 
14379
14880
  <dt class="tag-source">Source:</dt>
14380
14881
  <dd class="tag-source"><ul class="dummy"><li>
14381
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1220">line 1220</a>
14882
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1229">line 1229</a>
14382
14883
  </li></ul></dd>
14383
14884
 
14384
14885
 
@@ -14545,7 +15046,7 @@
14545
15046
 
14546
15047
  <dt class="tag-source">Source:</dt>
14547
15048
  <dd class="tag-source"><ul class="dummy"><li>
14548
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1230">line 1230</a>
15049
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1239">line 1239</a>
14549
15050
  </li></ul></dd>
14550
15051
 
14551
15052
 
@@ -14712,7 +15213,7 @@
14712
15213
 
14713
15214
  <dt class="tag-source">Source:</dt>
14714
15215
  <dd class="tag-source"><ul class="dummy"><li>
14715
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1240">line 1240</a>
15216
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1249">line 1249</a>
14716
15217
  </li></ul></dd>
14717
15218
 
14718
15219
 
@@ -14879,7 +15380,7 @@
14879
15380
 
14880
15381
  <dt class="tag-source">Source:</dt>
14881
15382
  <dd class="tag-source"><ul class="dummy"><li>
14882
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1250">line 1250</a>
15383
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1259">line 1259</a>
14883
15384
  </li></ul></dd>
14884
15385
 
14885
15386
 
@@ -15046,7 +15547,7 @@
15046
15547
 
15047
15548
  <dt class="tag-source">Source:</dt>
15048
15549
  <dd class="tag-source"><ul class="dummy"><li>
15049
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1260">line 1260</a>
15550
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1269">line 1269</a>
15050
15551
  </li></ul></dd>
15051
15552
 
15052
15553
 
@@ -15213,7 +15714,7 @@
15213
15714
 
15214
15715
  <dt class="tag-source">Source:</dt>
15215
15716
  <dd class="tag-source"><ul class="dummy"><li>
15216
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1270">line 1270</a>
15717
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1279">line 1279</a>
15217
15718
  </li></ul></dd>
15218
15719
 
15219
15720
 
@@ -15380,7 +15881,7 @@
15380
15881
 
15381
15882
  <dt class="tag-source">Source:</dt>
15382
15883
  <dd class="tag-source"><ul class="dummy"><li>
15383
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1280">line 1280</a>
15884
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1289">line 1289</a>
15384
15885
  </li></ul></dd>
15385
15886
 
15386
15887
 
@@ -15547,7 +16048,7 @@
15547
16048
 
15548
16049
  <dt class="tag-source">Source:</dt>
15549
16050
  <dd class="tag-source"><ul class="dummy"><li>
15550
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1290">line 1290</a>
16051
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1299">line 1299</a>
15551
16052
  </li></ul></dd>
15552
16053
 
15553
16054
 
@@ -15714,7 +16215,7 @@
15714
16215
 
15715
16216
  <dt class="tag-source">Source:</dt>
15716
16217
  <dd class="tag-source"><ul class="dummy"><li>
15717
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1300">line 1300</a>
16218
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1309">line 1309</a>
15718
16219
  </li></ul></dd>
15719
16220
 
15720
16221
 
@@ -15881,7 +16382,7 @@
15881
16382
 
15882
16383
  <dt class="tag-source">Source:</dt>
15883
16384
  <dd class="tag-source"><ul class="dummy"><li>
15884
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1310">line 1310</a>
16385
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1319">line 1319</a>
15885
16386
  </li></ul></dd>
15886
16387
 
15887
16388
 
@@ -16048,7 +16549,7 @@
16048
16549
 
16049
16550
  <dt class="tag-source">Source:</dt>
16050
16551
  <dd class="tag-source"><ul class="dummy"><li>
16051
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1320">line 1320</a>
16552
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1329">line 1329</a>
16052
16553
  </li></ul></dd>
16053
16554
 
16054
16555
 
@@ -16215,7 +16716,7 @@
16215
16716
 
16216
16717
  <dt class="tag-source">Source:</dt>
16217
16718
  <dd class="tag-source"><ul class="dummy"><li>
16218
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1330">line 1330</a>
16719
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1339">line 1339</a>
16219
16720
  </li></ul></dd>
16220
16721
 
16221
16722
 
@@ -16382,7 +16883,7 @@
16382
16883
 
16383
16884
  <dt class="tag-source">Source:</dt>
16384
16885
  <dd class="tag-source"><ul class="dummy"><li>
16385
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1340">line 1340</a>
16886
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1349">line 1349</a>
16386
16887
  </li></ul></dd>
16387
16888
 
16388
16889
 
@@ -16549,7 +17050,7 @@
16549
17050
 
16550
17051
  <dt class="tag-source">Source:</dt>
16551
17052
  <dd class="tag-source"><ul class="dummy"><li>
16552
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1350">line 1350</a>
17053
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1359">line 1359</a>
16553
17054
  </li></ul></dd>
16554
17055
 
16555
17056
 
@@ -16716,7 +17217,7 @@
16716
17217
 
16717
17218
  <dt class="tag-source">Source:</dt>
16718
17219
  <dd class="tag-source"><ul class="dummy"><li>
16719
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1360">line 1360</a>
17220
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1369">line 1369</a>
16720
17221
  </li></ul></dd>
16721
17222
 
16722
17223
 
@@ -16883,7 +17384,7 @@
16883
17384
 
16884
17385
  <dt class="tag-source">Source:</dt>
16885
17386
  <dd class="tag-source"><ul class="dummy"><li>
16886
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1370">line 1370</a>
17387
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1379">line 1379</a>
16887
17388
  </li></ul></dd>
16888
17389
 
16889
17390
 
@@ -17050,7 +17551,7 @@
17050
17551
 
17051
17552
  <dt class="tag-source">Source:</dt>
17052
17553
  <dd class="tag-source"><ul class="dummy"><li>
17053
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1380">line 1380</a>
17554
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1389">line 1389</a>
17054
17555
  </li></ul></dd>
17055
17556
 
17056
17557
 
@@ -17217,7 +17718,7 @@
17217
17718
 
17218
17719
  <dt class="tag-source">Source:</dt>
17219
17720
  <dd class="tag-source"><ul class="dummy"><li>
17220
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1390">line 1390</a>
17721
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1399">line 1399</a>
17221
17722
  </li></ul></dd>
17222
17723
 
17223
17724
 
@@ -17384,7 +17885,7 @@
17384
17885
 
17385
17886
  <dt class="tag-source">Source:</dt>
17386
17887
  <dd class="tag-source"><ul class="dummy"><li>
17387
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1400">line 1400</a>
17888
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1409">line 1409</a>
17388
17889
  </li></ul></dd>
17389
17890
 
17390
17891
 
@@ -17551,7 +18052,7 @@
17551
18052
 
17552
18053
  <dt class="tag-source">Source:</dt>
17553
18054
  <dd class="tag-source"><ul class="dummy"><li>
17554
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1410">line 1410</a>
18055
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1419">line 1419</a>
17555
18056
  </li></ul></dd>
17556
18057
 
17557
18058
 
@@ -17718,7 +18219,7 @@
17718
18219
 
17719
18220
  <dt class="tag-source">Source:</dt>
17720
18221
  <dd class="tag-source"><ul class="dummy"><li>
17721
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1420">line 1420</a>
18222
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1429">line 1429</a>
17722
18223
  </li></ul></dd>
17723
18224
 
17724
18225
 
@@ -17885,7 +18386,7 @@
17885
18386
 
17886
18387
  <dt class="tag-source">Source:</dt>
17887
18388
  <dd class="tag-source"><ul class="dummy"><li>
17888
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1430">line 1430</a>
18389
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1439">line 1439</a>
17889
18390
  </li></ul></dd>
17890
18391
 
17891
18392
 
@@ -18052,7 +18553,7 @@
18052
18553
 
18053
18554
  <dt class="tag-source">Source:</dt>
18054
18555
  <dd class="tag-source"><ul class="dummy"><li>
18055
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1440">line 1440</a>
18556
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1449">line 1449</a>
18056
18557
  </li></ul></dd>
18057
18558
 
18058
18559
 
@@ -18219,7 +18720,7 @@
18219
18720
 
18220
18721
  <dt class="tag-source">Source:</dt>
18221
18722
  <dd class="tag-source"><ul class="dummy"><li>
18222
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1450">line 1450</a>
18723
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1459">line 1459</a>
18223
18724
  </li></ul></dd>
18224
18725
 
18225
18726
 
@@ -18386,7 +18887,7 @@
18386
18887
 
18387
18888
  <dt class="tag-source">Source:</dt>
18388
18889
  <dd class="tag-source"><ul class="dummy"><li>
18389
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1460">line 1460</a>
18890
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1469">line 1469</a>
18390
18891
  </li></ul></dd>
18391
18892
 
18392
18893
 
@@ -18553,174 +19054,7 @@
18553
19054
 
18554
19055
  <dt class="tag-source">Source:</dt>
18555
19056
  <dd class="tag-source"><ul class="dummy"><li>
18556
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1470">line 1470</a>
18557
- </li></ul></dd>
18558
-
18559
-
18560
-
18561
-
18562
-
18563
-
18564
-
18565
- </dl>
18566
-
18567
-
18568
-
18569
-
18570
-
18571
-
18572
-
18573
-
18574
-
18575
-
18576
-
18577
-
18578
-
18579
-
18580
-
18581
- <h5>Returns:</h5>
18582
-
18583
-
18584
-
18585
-
18586
- <dl>
18587
- <dt>
18588
- Type
18589
- </dt>
18590
- <dd>
18591
-
18592
- <span class="param-type"><a href="GraphTraversal.html">GraphTraversal</a></span>
18593
-
18594
-
18595
- </dd>
18596
- </dl>
18597
-
18598
-
18599
-
18600
-
18601
-
18602
-
18603
-
18604
-
18605
-
18606
-
18607
-
18608
-
18609
-
18610
- <h4 class="name" id="store"><span class="type-signature"></span>store<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
18611
-
18612
-
18613
-
18614
-
18615
-
18616
-
18617
- <div class="description">
18618
- Graph traversal store method.
18619
- </div>
18620
-
18621
-
18622
-
18623
-
18624
-
18625
-
18626
-
18627
-
18628
-
18629
- <h5>Parameters:</h5>
18630
-
18631
-
18632
- <table class="params">
18633
- <thead>
18634
- <tr>
18635
-
18636
- <th>Name</th>
18637
-
18638
-
18639
- <th>Type</th>
18640
-
18641
-
18642
- <th>Attributes</th>
18643
-
18644
-
18645
-
18646
-
18647
- <th class="last">Description</th>
18648
- </tr>
18649
- </thead>
18650
-
18651
- <tbody>
18652
-
18653
-
18654
- <tr>
18655
-
18656
- <td class="name"><code>args</code></td>
18657
-
18658
-
18659
- <td class="type">
18660
-
18661
-
18662
- <span class="param-type">Object</span>
18663
-
18664
-
18665
-
18666
- </td>
18667
-
18668
-
18669
- <td class="attributes">
18670
-
18671
-
18672
-
18673
-
18674
-
18675
- &lt;repeatable><br>
18676
-
18677
- </td>
18678
-
18679
-
18680
-
18681
-
18682
- <td class="description last"></td>
18683
- </tr>
18684
-
18685
-
18686
- </tbody>
18687
- </table>
18688
-
18689
-
18690
-
18691
-
18692
-
18693
-
18694
- <dl class="details">
18695
-
18696
-
18697
-
18698
-
18699
-
18700
-
18701
-
18702
-
18703
-
18704
-
18705
-
18706
-
18707
-
18708
-
18709
-
18710
-
18711
-
18712
-
18713
-
18714
-
18715
-
18716
-
18717
-
18718
-
18719
-
18720
-
18721
- <dt class="tag-source">Source:</dt>
18722
- <dd class="tag-source"><ul class="dummy"><li>
18723
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1480">line 1480</a>
19057
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1479">line 1479</a>
18724
19058
  </li></ul></dd>
18725
19059
 
18726
19060
 
@@ -18887,7 +19221,7 @@
18887
19221
 
18888
19222
  <dt class="tag-source">Source:</dt>
18889
19223
  <dd class="tag-source"><ul class="dummy"><li>
18890
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1490">line 1490</a>
19224
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1489">line 1489</a>
18891
19225
  </li></ul></dd>
18892
19226
 
18893
19227
 
@@ -19054,7 +19388,7 @@
19054
19388
 
19055
19389
  <dt class="tag-source">Source:</dt>
19056
19390
  <dd class="tag-source"><ul class="dummy"><li>
19057
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1500">line 1500</a>
19391
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1499">line 1499</a>
19058
19392
  </li></ul></dd>
19059
19393
 
19060
19394
 
@@ -19221,7 +19555,7 @@
19221
19555
 
19222
19556
  <dt class="tag-source">Source:</dt>
19223
19557
  <dd class="tag-source"><ul class="dummy"><li>
19224
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1510">line 1510</a>
19558
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1509">line 1509</a>
19225
19559
  </li></ul></dd>
19226
19560
 
19227
19561
 
@@ -19388,7 +19722,7 @@
19388
19722
 
19389
19723
  <dt class="tag-source">Source:</dt>
19390
19724
  <dd class="tag-source"><ul class="dummy"><li>
19391
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1520">line 1520</a>
19725
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1519">line 1519</a>
19392
19726
  </li></ul></dd>
19393
19727
 
19394
19728
 
@@ -19555,7 +19889,7 @@
19555
19889
 
19556
19890
  <dt class="tag-source">Source:</dt>
19557
19891
  <dd class="tag-source"><ul class="dummy"><li>
19558
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1530">line 1530</a>
19892
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1529">line 1529</a>
19559
19893
  </li></ul></dd>
19560
19894
 
19561
19895
 
@@ -19722,7 +20056,7 @@
19722
20056
 
19723
20057
  <dt class="tag-source">Source:</dt>
19724
20058
  <dd class="tag-source"><ul class="dummy"><li>
19725
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1540">line 1540</a>
20059
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1539">line 1539</a>
19726
20060
  </li></ul></dd>
19727
20061
 
19728
20062
 
@@ -19889,7 +20223,7 @@
19889
20223
 
19890
20224
  <dt class="tag-source">Source:</dt>
19891
20225
  <dd class="tag-source"><ul class="dummy"><li>
19892
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1550">line 1550</a>
20226
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1549">line 1549</a>
19893
20227
  </li></ul></dd>
19894
20228
 
19895
20229
 
@@ -20056,7 +20390,7 @@
20056
20390
 
20057
20391
  <dt class="tag-source">Source:</dt>
20058
20392
  <dd class="tag-source"><ul class="dummy"><li>
20059
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1560">line 1560</a>
20393
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1559">line 1559</a>
20060
20394
  </li></ul></dd>
20061
20395
 
20062
20396
 
@@ -20223,7 +20557,7 @@
20223
20557
 
20224
20558
  <dt class="tag-source">Source:</dt>
20225
20559
  <dd class="tag-source"><ul class="dummy"><li>
20226
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1570">line 1570</a>
20560
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1569">line 1569</a>
20227
20561
  </li></ul></dd>
20228
20562
 
20229
20563
 
@@ -20390,7 +20724,7 @@
20390
20724
 
20391
20725
  <dt class="tag-source">Source:</dt>
20392
20726
  <dd class="tag-source"><ul class="dummy"><li>
20393
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1580">line 1580</a>
20727
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1579">line 1579</a>
20394
20728
  </li></ul></dd>
20395
20729
 
20396
20730
 
@@ -20557,7 +20891,7 @@
20557
20891
 
20558
20892
  <dt class="tag-source">Source:</dt>
20559
20893
  <dd class="tag-source"><ul class="dummy"><li>
20560
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1590">line 1590</a>
20894
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1589">line 1589</a>
20561
20895
  </li></ul></dd>
20562
20896
 
20563
20897
 
@@ -20724,7 +21058,7 @@
20724
21058
 
20725
21059
  <dt class="tag-source">Source:</dt>
20726
21060
  <dd class="tag-source"><ul class="dummy"><li>
20727
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1600">line 1600</a>
21061
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1599">line 1599</a>
20728
21062
  </li></ul></dd>
20729
21063
 
20730
21064
 
@@ -20891,7 +21225,7 @@
20891
21225
 
20892
21226
  <dt class="tag-source">Source:</dt>
20893
21227
  <dd class="tag-source"><ul class="dummy"><li>
20894
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1610">line 1610</a>
21228
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1609">line 1609</a>
20895
21229
  </li></ul></dd>
20896
21230
 
20897
21231
 
@@ -21058,7 +21392,7 @@
21058
21392
 
21059
21393
  <dt class="tag-source">Source:</dt>
21060
21394
  <dd class="tag-source"><ul class="dummy"><li>
21061
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1620">line 1620</a>
21395
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1619">line 1619</a>
21062
21396
  </li></ul></dd>
21063
21397
 
21064
21398
 
@@ -21225,7 +21559,7 @@
21225
21559
 
21226
21560
  <dt class="tag-source">Source:</dt>
21227
21561
  <dd class="tag-source"><ul class="dummy"><li>
21228
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1630">line 1630</a>
21562
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1629">line 1629</a>
21229
21563
  </li></ul></dd>
21230
21564
 
21231
21565
 
@@ -21392,7 +21726,7 @@
21392
21726
 
21393
21727
  <dt class="tag-source">Source:</dt>
21394
21728
  <dd class="tag-source"><ul class="dummy"><li>
21395
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1640">line 1640</a>
21729
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1639">line 1639</a>
21396
21730
  </li></ul></dd>
21397
21731
 
21398
21732
 
@@ -21559,7 +21893,7 @@
21559
21893
 
21560
21894
  <dt class="tag-source">Source:</dt>
21561
21895
  <dd class="tag-source"><ul class="dummy"><li>
21562
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line372">line 372</a>
21896
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line351">line 351</a>
21563
21897
  </li></ul></dd>
21564
21898
 
21565
21899
 
@@ -21726,7 +22060,7 @@
21726
22060
 
21727
22061
  <dt class="tag-source">Source:</dt>
21728
22062
  <dd class="tag-source"><ul class="dummy"><li>
21729
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1650">line 1650</a>
22063
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1649">line 1649</a>
21730
22064
  </li></ul></dd>
21731
22065
 
21732
22066
 
@@ -21893,7 +22227,7 @@
21893
22227
 
21894
22228
  <dt class="tag-source">Source:</dt>
21895
22229
  <dd class="tag-source"><ul class="dummy"><li>
21896
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1660">line 1660</a>
22230
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1659">line 1659</a>
21897
22231
  </li></ul></dd>
21898
22232
 
21899
22233
 
@@ -22060,7 +22394,7 @@
22060
22394
 
22061
22395
  <dt class="tag-source">Source:</dt>
22062
22396
  <dd class="tag-source"><ul class="dummy"><li>
22063
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1670">line 1670</a>
22397
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1669">line 1669</a>
22064
22398
  </li></ul></dd>
22065
22399
 
22066
22400
 
@@ -22227,7 +22561,7 @@
22227
22561
 
22228
22562
  <dt class="tag-source">Source:</dt>
22229
22563
  <dd class="tag-source"><ul class="dummy"><li>
22230
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1680">line 1680</a>
22564
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1679">line 1679</a>
22231
22565
  </li></ul></dd>
22232
22566
 
22233
22567
 
@@ -22394,7 +22728,7 @@
22394
22728
 
22395
22729
  <dt class="tag-source">Source:</dt>
22396
22730
  <dd class="tag-source"><ul class="dummy"><li>
22397
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1690">line 1690</a>
22731
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1689">line 1689</a>
22398
22732
  </li></ul></dd>
22399
22733
 
22400
22734
 
@@ -22561,7 +22895,7 @@
22561
22895
 
22562
22896
  <dt class="tag-source">Source:</dt>
22563
22897
  <dd class="tag-source"><ul class="dummy"><li>
22564
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1700">line 1700</a>
22898
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1699">line 1699</a>
22565
22899
  </li></ul></dd>
22566
22900
 
22567
22901
 
@@ -22625,13 +22959,13 @@
22625
22959
  </div>
22626
22960
 
22627
22961
  <nav>
22628
- <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="AnonymousTraversalSource.html">AnonymousTraversalSource</a></li><li><a href="Authenticator.html">Authenticator</a></li><li><a href="Bytecode.html">Bytecode</a></li><li><a href="CardinalityValue.html">CardinalityValue</a></li><li><a href="Client.html">Client</a></li><li><a href="Connection.html">Connection</a></li><li><a href="DriverRemoteConnection.html">DriverRemoteConnection</a></li><li><a href="EdgeLabelVerificationStrategy.html">EdgeLabelVerificationStrategy</a></li><li><a href="Graph.html">Graph</a></li><li><a href="GraphSON2Reader.html">GraphSON2Reader</a></li><li><a href="GraphSON2Writer.html">GraphSON2Writer</a></li><li><a href="GraphSON3Reader.html">GraphSON3Reader</a></li><li><a href="GraphSON3Writer.html">GraphSON3Writer</a></li><li><a href="GraphTraversal.html">GraphTraversal</a></li><li><a href="GraphTraversalSource.html">GraphTraversalSource</a></li><li><a href="HaltedTraverserStrategy.html">HaltedTraverserStrategy</a></li><li><a href="MatchAlgorithmStrategy.html">MatchAlgorithmStrategy</a></li><li><a href="module.exports.html">exports</a></li><li><a href="P.html">P</a></li><li><a href="PartitionStrategy.html">PartitionStrategy</a></li><li><a href="Path.html">Path</a></li><li><a href="PlainTextSaslAuthenticator.html">PlainTextSaslAuthenticator</a></li><li><a href="ProductiveByStrategy.html">ProductiveByStrategy</a></li><li><a href="RemoteConnection.html">RemoteConnection</a></li><li><a href="RemoteStrategy.html">RemoteStrategy</a></li><li><a href="RemoteTraversal.html">RemoteTraversal</a></li><li><a href="ReservedKeysVerificationStrategy.html">ReservedKeysVerificationStrategy</a></li><li><a href="ResponseError.html">ResponseError</a></li><li><a href="ResultSet.html">ResultSet</a></li><li><a href="SaslAuthenticator.html">SaslAuthenticator</a></li><li><a href="SaslMechanismBase.html">SaslMechanismBase</a></li><li><a href="SaslMechanismPlain.html">SaslMechanismPlain</a></li><li><a href="SeedStrategy.html">SeedStrategy</a></li><li><a href="SubgraphStrategy.html">SubgraphStrategy</a></li><li><a href="TextP.html">TextP</a></li><li><a href="Transaction.html">Transaction</a></li><li><a href="Translator.html">Translator</a></li><li><a href="TraversalStrategies.html">TraversalStrategies</a></li><li><a href="TraversalStrategy.html">TraversalStrategy</a></li><li><a href="TypeSerializer.html">TypeSerializer</a></li></ul><h3>Global</h3><ul><li><a href="global.html#DataType">DataType</a></li><li><a href="global.html#statics">statics</a></li><li><a href="global.html#toArrayBuffer">toArrayBuffer</a></li></ul>
22962
+ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="AnonymousTraversalSource.html">AnonymousTraversalSource</a></li><li><a href="Authenticator.html">Authenticator</a></li><li><a href="Bytecode.html">Bytecode</a></li><li><a href="CardinalityValue.html">CardinalityValue</a></li><li><a href="Client.html">Client</a></li><li><a href="Connection.html">Connection</a></li><li><a href="DriverRemoteConnection.html">DriverRemoteConnection</a></li><li><a href="EdgeLabelVerificationStrategy.html">EdgeLabelVerificationStrategy</a></li><li><a href="Graph.html">Graph</a></li><li><a href="GraphSON2Reader.html">GraphSON2Reader</a></li><li><a href="GraphSON2Writer.html">GraphSON2Writer</a></li><li><a href="GraphSON3Reader.html">GraphSON3Reader</a></li><li><a href="GraphSON3Writer.html">GraphSON3Writer</a></li><li><a href="GraphTraversal.html">GraphTraversal</a></li><li><a href="GraphTraversalSource.html">GraphTraversalSource</a></li><li><a href="HaltedTraverserStrategy.html">HaltedTraverserStrategy</a></li><li><a href="MatchAlgorithmStrategy.html">MatchAlgorithmStrategy</a></li><li><a href="module.exports.html">exports</a></li><li><a href="P.html">P</a></li><li><a href="PartitionStrategy.html">PartitionStrategy</a></li><li><a href="Path.html">Path</a></li><li><a href="PlainTextSaslAuthenticator.html">PlainTextSaslAuthenticator</a></li><li><a href="ProductiveByStrategy.html">ProductiveByStrategy</a></li><li><a href="RemoteConnection.html">RemoteConnection</a></li><li><a href="RemoteStrategy.html">RemoteStrategy</a></li><li><a href="RemoteTraversal.html">RemoteTraversal</a></li><li><a href="ReservedKeysVerificationStrategy.html">ReservedKeysVerificationStrategy</a></li><li><a href="ResponseError.html">ResponseError</a></li><li><a href="ResultSet.html">ResultSet</a></li><li><a href="SaslAuthenticator.html">SaslAuthenticator</a></li><li><a href="SaslMechanismBase.html">SaslMechanismBase</a></li><li><a href="SaslMechanismPlain.html">SaslMechanismPlain</a></li><li><a href="SeedStrategy.html">SeedStrategy</a></li><li><a href="SubgraphStrategy.html">SubgraphStrategy</a></li><li><a href="TextP.html">TextP</a></li><li><a href="Transaction.html">Transaction</a></li><li><a href="Translator.html">Translator</a></li><li><a href="TraversalStrategies.html">TraversalStrategies</a></li><li><a href="TraversalStrategy.html">TraversalStrategy</a></li><li><a href="TypeSerializer.html">TypeSerializer</a></li></ul><h3>Global</h3><ul><li><a href="global.html#DataType">DataType</a></li><li><a href="global.html#deserializeProperties">deserializeProperties</a></li><li><a href="global.html#statics">statics</a></li><li><a href="global.html#toArrayBuffer">toArrayBuffer</a></li></ul>
22629
22963
  </nav>
22630
22964
 
22631
22965
  <br class="clear">
22632
22966
 
22633
22967
  <footer>
22634
- Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Mon Nov 17 2025 10:18:37 GMT-0800 (Pacific Standard Time)
22968
+ Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Mon Nov 17 2025 15:09:27 GMT-0800 (Pacific Standard Time)
22635
22969
  </footer>
22636
22970
 
22637
22971
  <script> prettyPrint(); </script>