gremlin 3.4.12 → 3.5.2

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 (77) hide show
  1. package/NOTICE +1 -1
  2. package/doc/AnonymousTraversalSource.html +11 -3
  3. package/doc/Authenticator.html +6 -2
  4. package/doc/Bytecode.html +258 -6
  5. package/doc/Client.html +84 -6
  6. package/doc/Connection.html +12 -2
  7. package/doc/DriverRemoteConnection.html +392 -8
  8. package/doc/EdgeLabelVerificationStrategy.html +5 -3
  9. package/doc/Graph.html +6 -2
  10. package/doc/GraphSON2Reader.html +6 -2
  11. package/doc/GraphSON2Writer.html +8 -2
  12. package/doc/GraphSON3Reader.html +4 -2
  13. package/doc/GraphSON3Writer.html +4 -2
  14. package/doc/GraphTraversal.html +317 -107
  15. package/doc/GraphTraversalSource.html +164 -19
  16. package/doc/HaltedTraverserStrategy.html +5 -3
  17. package/doc/MatchAlgorithmStrategy.html +5 -3
  18. package/doc/P.html +28 -2
  19. package/doc/PartitionStrategy.html +5 -3
  20. package/doc/Path.html +4 -2
  21. package/doc/PlainTextSaslAuthenticator.html +6 -2
  22. package/doc/ProductiveByStrategy.html +288 -0
  23. package/doc/RemoteConnection.html +561 -13
  24. package/doc/RemoteStrategy.html +8 -4
  25. package/doc/RemoteTraversal.html +5 -3
  26. package/doc/ReservedKeysVerificationStrategy.html +5 -3
  27. package/doc/ResponseError.html +4 -2
  28. package/doc/ResultSet.html +10 -2
  29. package/doc/SaslAuthenticator.html +6 -2
  30. package/doc/SaslMechanismBase.html +8 -2
  31. package/doc/SaslMechanismPlain.html +10 -2
  32. package/doc/SeedStrategy.html +288 -0
  33. package/doc/SubgraphStrategy.html +5 -3
  34. package/doc/TextP.html +18 -2
  35. package/doc/Transaction.html +2 -2
  36. package/doc/Translator.html +202 -4
  37. package/doc/TraversalStrategies.html +142 -3
  38. package/doc/TraversalStrategy.html +8 -4
  39. package/doc/TypeSerializer.html +4 -2
  40. package/doc/driver_auth_authenticator.js.html +2 -2
  41. package/doc/driver_auth_mechanisms_sasl-mechanism-base.js.html +2 -2
  42. package/doc/driver_auth_mechanisms_sasl-mechanism-plain.js.html +2 -2
  43. package/doc/driver_auth_plain-text-sasl-authenticator.js.html +2 -2
  44. package/doc/driver_auth_sasl-authenticator.js.html +2 -2
  45. package/doc/driver_client.js.html +20 -8
  46. package/doc/driver_connection.js.html +2 -2
  47. package/doc/driver_driver-remote-connection.js.html +38 -4
  48. package/doc/driver_remote-connection.js.html +55 -5
  49. package/doc/driver_response-error.js.html +2 -2
  50. package/doc/driver_result-set.js.html +2 -2
  51. package/doc/global.html +3 -3
  52. package/doc/index.html +35 -18
  53. package/doc/process_anonymous-traversal.js.html +3 -3
  54. package/doc/process_bytecode.js.html +32 -3
  55. package/doc/process_graph-traversal.js.html +25 -6
  56. package/doc/process_transaction.js.html +2 -2
  57. package/doc/process_translator.js.html +45 -32
  58. package/doc/process_traversal-strategy.js.html +23 -2
  59. package/doc/process_traversal.js.html +3 -3
  60. package/doc/scripts/linenumber.js +9 -9
  61. package/doc/structure_graph.js.html +2 -2
  62. package/doc/structure_io_graph-serializer.js.html +2 -2
  63. package/doc/structure_io_type-serializers.js.html +2 -2
  64. package/doc/styles/jsdoc-default.css +2 -2
  65. package/lib/driver/client.js +18 -6
  66. package/lib/driver/driver-remote-connection.js +36 -2
  67. package/lib/driver/remote-connection.js +53 -3
  68. package/lib/process/anonymous-traversal.js +1 -1
  69. package/lib/process/bytecode.js +30 -1
  70. package/lib/process/graph-traversal.js +23 -4
  71. package/lib/process/transaction.js +86 -0
  72. package/lib/process/translator.js +43 -30
  73. package/lib/process/traversal-strategy.js +21 -0
  74. package/lib/process/traversal.js +1 -1
  75. package/package.json +6 -5
  76. package/.npmignore +0 -26
  77. package/package-lock.json +0 -5828
@@ -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#line232">line 232</a>
96
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line251">line 251</a>
97
97
  </li></ul></dd>
98
98
 
99
99
 
@@ -121,6 +121,8 @@
121
121
 
122
122
 
123
123
 
124
+
125
+
124
126
 
125
127
  </div>
126
128
 
@@ -260,7 +262,7 @@
260
262
 
261
263
  <dt class="tag-source">Source:</dt>
262
264
  <dd class="tag-source"><ul class="dummy"><li>
263
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line260">line 260</a>
265
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line279">line 279</a>
264
266
  </li></ul></dd>
265
267
 
266
268
 
@@ -283,6 +285,8 @@
283
285
 
284
286
 
285
287
 
288
+
289
+
286
290
  <h5>Returns:</h5>
287
291
 
288
292
 
@@ -425,7 +429,7 @@
425
429
 
426
430
  <dt class="tag-source">Source:</dt>
427
431
  <dd class="tag-source"><ul class="dummy"><li>
428
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line270">line 270</a>
432
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line289">line 289</a>
429
433
  </li></ul></dd>
430
434
 
431
435
 
@@ -448,6 +452,8 @@
448
452
 
449
453
 
450
454
 
455
+
456
+
451
457
  <h5>Returns:</h5>
452
458
 
453
459
 
@@ -590,7 +596,7 @@
590
596
 
591
597
  <dt class="tag-source">Source:</dt>
592
598
  <dd class="tag-source"><ul class="dummy"><li>
593
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line280">line 280</a>
599
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line299">line 299</a>
594
600
  </li></ul></dd>
595
601
 
596
602
 
@@ -613,6 +619,8 @@
613
619
 
614
620
 
615
621
 
622
+
623
+
616
624
  <h5>Returns:</h5>
617
625
 
618
626
 
@@ -755,7 +763,7 @@
755
763
 
756
764
  <dt class="tag-source">Source:</dt>
757
765
  <dd class="tag-source"><ul class="dummy"><li>
758
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line290">line 290</a>
766
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line309">line 309</a>
759
767
  </li></ul></dd>
760
768
 
761
769
 
@@ -778,6 +786,8 @@
778
786
 
779
787
 
780
788
 
789
+
790
+
781
791
  <h5>Returns:</h5>
782
792
 
783
793
 
@@ -920,7 +930,7 @@
920
930
 
921
931
  <dt class="tag-source">Source:</dt>
922
932
  <dd class="tag-source"><ul class="dummy"><li>
923
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line300">line 300</a>
933
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line319">line 319</a>
924
934
  </li></ul></dd>
925
935
 
926
936
 
@@ -943,6 +953,8 @@
943
953
 
944
954
 
945
955
 
956
+
957
+
946
958
  <h5>Returns:</h5>
947
959
 
948
960
 
@@ -1085,7 +1097,7 @@
1085
1097
 
1086
1098
  <dt class="tag-source">Source:</dt>
1087
1099
  <dd class="tag-source"><ul class="dummy"><li>
1088
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line310">line 310</a>
1100
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line329">line 329</a>
1089
1101
  </li></ul></dd>
1090
1102
 
1091
1103
 
@@ -1108,6 +1120,8 @@
1108
1120
 
1109
1121
 
1110
1122
 
1123
+
1124
+
1111
1125
  <h5>Returns:</h5>
1112
1126
 
1113
1127
 
@@ -1250,7 +1264,7 @@
1250
1264
 
1251
1265
  <dt class="tag-source">Source:</dt>
1252
1266
  <dd class="tag-source"><ul class="dummy"><li>
1253
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line320">line 320</a>
1267
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line339">line 339</a>
1254
1268
  </li></ul></dd>
1255
1269
 
1256
1270
 
@@ -1273,6 +1287,8 @@
1273
1287
 
1274
1288
 
1275
1289
 
1290
+
1291
+
1276
1292
  <h5>Returns:</h5>
1277
1293
 
1278
1294
 
@@ -1415,7 +1431,7 @@
1415
1431
 
1416
1432
  <dt class="tag-source">Source:</dt>
1417
1433
  <dd class="tag-source"><ul class="dummy"><li>
1418
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line330">line 330</a>
1434
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line349">line 349</a>
1419
1435
  </li></ul></dd>
1420
1436
 
1421
1437
 
@@ -1438,6 +1454,8 @@
1438
1454
 
1439
1455
 
1440
1456
 
1457
+
1458
+
1441
1459
  <h5>Returns:</h5>
1442
1460
 
1443
1461
 
@@ -1580,7 +1598,7 @@
1580
1598
 
1581
1599
  <dt class="tag-source">Source:</dt>
1582
1600
  <dd class="tag-source"><ul class="dummy"><li>
1583
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line340">line 340</a>
1601
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line359">line 359</a>
1584
1602
  </li></ul></dd>
1585
1603
 
1586
1604
 
@@ -1603,6 +1621,8 @@
1603
1621
 
1604
1622
 
1605
1623
 
1624
+
1625
+
1606
1626
  <h5>Returns:</h5>
1607
1627
 
1608
1628
 
@@ -1745,7 +1765,7 @@
1745
1765
 
1746
1766
  <dt class="tag-source">Source:</dt>
1747
1767
  <dd class="tag-source"><ul class="dummy"><li>
1748
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line350">line 350</a>
1768
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line369">line 369</a>
1749
1769
  </li></ul></dd>
1750
1770
 
1751
1771
 
@@ -1768,6 +1788,8 @@
1768
1788
 
1769
1789
 
1770
1790
 
1791
+
1792
+
1771
1793
  <h5>Returns:</h5>
1772
1794
 
1773
1795
 
@@ -1910,7 +1932,7 @@
1910
1932
 
1911
1933
  <dt class="tag-source">Source:</dt>
1912
1934
  <dd class="tag-source"><ul class="dummy"><li>
1913
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line360">line 360</a>
1935
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line379">line 379</a>
1914
1936
  </li></ul></dd>
1915
1937
 
1916
1938
 
@@ -1933,6 +1955,8 @@
1933
1955
 
1934
1956
 
1935
1957
 
1958
+
1959
+
1936
1960
  <h5>Returns:</h5>
1937
1961
 
1938
1962
 
@@ -2075,7 +2099,7 @@
2075
2099
 
2076
2100
  <dt class="tag-source">Source:</dt>
2077
2101
  <dd class="tag-source"><ul class="dummy"><li>
2078
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line370">line 370</a>
2102
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line389">line 389</a>
2079
2103
  </li></ul></dd>
2080
2104
 
2081
2105
 
@@ -2098,6 +2122,8 @@
2098
2122
 
2099
2123
 
2100
2124
 
2125
+
2126
+
2101
2127
  <h5>Returns:</h5>
2102
2128
 
2103
2129
 
@@ -2240,7 +2266,7 @@
2240
2266
 
2241
2267
  <dt class="tag-source">Source:</dt>
2242
2268
  <dd class="tag-source"><ul class="dummy"><li>
2243
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line380">line 380</a>
2269
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line399">line 399</a>
2244
2270
  </li></ul></dd>
2245
2271
 
2246
2272
 
@@ -2263,6 +2289,8 @@
2263
2289
 
2264
2290
 
2265
2291
 
2292
+
2293
+
2266
2294
  <h5>Returns:</h5>
2267
2295
 
2268
2296
 
@@ -2344,7 +2372,7 @@
2344
2372
 
2345
2373
  <dt class="tag-source">Source:</dt>
2346
2374
  <dd class="tag-source"><ul class="dummy"><li>
2347
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line240">line 240</a>
2375
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line259">line 259</a>
2348
2376
  </li></ul></dd>
2349
2377
 
2350
2378
 
@@ -2372,6 +2400,8 @@
2372
2400
 
2373
2401
 
2374
2402
 
2403
+
2404
+
2375
2405
 
2376
2406
 
2377
2407
 
@@ -2491,7 +2521,7 @@
2491
2521
 
2492
2522
  <dt class="tag-source">Source:</dt>
2493
2523
  <dd class="tag-source"><ul class="dummy"><li>
2494
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line390">line 390</a>
2524
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line409">line 409</a>
2495
2525
  </li></ul></dd>
2496
2526
 
2497
2527
 
@@ -2514,6 +2544,8 @@
2514
2544
 
2515
2545
 
2516
2546
 
2547
+
2548
+
2517
2549
  <h5>Returns:</h5>
2518
2550
 
2519
2551
 
@@ -2656,7 +2688,7 @@
2656
2688
 
2657
2689
  <dt class="tag-source">Source:</dt>
2658
2690
  <dd class="tag-source"><ul class="dummy"><li>
2659
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line400">line 400</a>
2691
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line419">line 419</a>
2660
2692
  </li></ul></dd>
2661
2693
 
2662
2694
 
@@ -2679,6 +2711,8 @@
2679
2711
 
2680
2712
 
2681
2713
 
2714
+
2715
+
2682
2716
  <h5>Returns:</h5>
2683
2717
 
2684
2718
 
@@ -2821,7 +2855,7 @@
2821
2855
 
2822
2856
  <dt class="tag-source">Source:</dt>
2823
2857
  <dd class="tag-source"><ul class="dummy"><li>
2824
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line410">line 410</a>
2858
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line429">line 429</a>
2825
2859
  </li></ul></dd>
2826
2860
 
2827
2861
 
@@ -2844,6 +2878,8 @@
2844
2878
 
2845
2879
 
2846
2880
 
2881
+
2882
+
2847
2883
  <h5>Returns:</h5>
2848
2884
 
2849
2885
 
@@ -2986,7 +3022,7 @@
2986
3022
 
2987
3023
  <dt class="tag-source">Source:</dt>
2988
3024
  <dd class="tag-source"><ul class="dummy"><li>
2989
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line420">line 420</a>
3025
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line439">line 439</a>
2990
3026
  </li></ul></dd>
2991
3027
 
2992
3028
 
@@ -3009,6 +3045,8 @@
3009
3045
 
3010
3046
 
3011
3047
 
3048
+
3049
+
3012
3050
  <h5>Returns:</h5>
3013
3051
 
3014
3052
 
@@ -3151,7 +3189,7 @@
3151
3189
 
3152
3190
  <dt class="tag-source">Source:</dt>
3153
3191
  <dd class="tag-source"><ul class="dummy"><li>
3154
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line430">line 430</a>
3192
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line449">line 449</a>
3155
3193
  </li></ul></dd>
3156
3194
 
3157
3195
 
@@ -3174,6 +3212,8 @@
3174
3212
 
3175
3213
 
3176
3214
 
3215
+
3216
+
3177
3217
  <h5>Returns:</h5>
3178
3218
 
3179
3219
 
@@ -3316,7 +3356,7 @@
3316
3356
 
3317
3357
  <dt class="tag-source">Source:</dt>
3318
3358
  <dd class="tag-source"><ul class="dummy"><li>
3319
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line440">line 440</a>
3359
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line459">line 459</a>
3320
3360
  </li></ul></dd>
3321
3361
 
3322
3362
 
@@ -3339,6 +3379,8 @@
3339
3379
 
3340
3380
 
3341
3381
 
3382
+
3383
+
3342
3384
  <h5>Returns:</h5>
3343
3385
 
3344
3386
 
@@ -3481,7 +3523,7 @@
3481
3523
 
3482
3524
  <dt class="tag-source">Source:</dt>
3483
3525
  <dd class="tag-source"><ul class="dummy"><li>
3484
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line450">line 450</a>
3526
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line469">line 469</a>
3485
3527
  </li></ul></dd>
3486
3528
 
3487
3529
 
@@ -3504,6 +3546,8 @@
3504
3546
 
3505
3547
 
3506
3548
 
3549
+
3550
+
3507
3551
  <h5>Returns:</h5>
3508
3552
 
3509
3553
 
@@ -3646,7 +3690,7 @@
3646
3690
 
3647
3691
  <dt class="tag-source">Source:</dt>
3648
3692
  <dd class="tag-source"><ul class="dummy"><li>
3649
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line460">line 460</a>
3693
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line479">line 479</a>
3650
3694
  </li></ul></dd>
3651
3695
 
3652
3696
 
@@ -3669,6 +3713,8 @@
3669
3713
 
3670
3714
 
3671
3715
 
3716
+
3717
+
3672
3718
  <h5>Returns:</h5>
3673
3719
 
3674
3720
 
@@ -3811,7 +3857,7 @@
3811
3857
 
3812
3858
  <dt class="tag-source">Source:</dt>
3813
3859
  <dd class="tag-source"><ul class="dummy"><li>
3814
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line470">line 470</a>
3860
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line489">line 489</a>
3815
3861
  </li></ul></dd>
3816
3862
 
3817
3863
 
@@ -3834,6 +3880,8 @@
3834
3880
 
3835
3881
 
3836
3882
 
3883
+
3884
+
3837
3885
  <h5>Returns:</h5>
3838
3886
 
3839
3887
 
@@ -3976,7 +4024,7 @@
3976
4024
 
3977
4025
  <dt class="tag-source">Source:</dt>
3978
4026
  <dd class="tag-source"><ul class="dummy"><li>
3979
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line480">line 480</a>
4027
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line499">line 499</a>
3980
4028
  </li></ul></dd>
3981
4029
 
3982
4030
 
@@ -3999,6 +4047,8 @@
3999
4047
 
4000
4048
 
4001
4049
 
4050
+
4051
+
4002
4052
  <h5>Returns:</h5>
4003
4053
 
4004
4054
 
@@ -4141,7 +4191,7 @@
4141
4191
 
4142
4192
  <dt class="tag-source">Source:</dt>
4143
4193
  <dd class="tag-source"><ul class="dummy"><li>
4144
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line490">line 490</a>
4194
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line509">line 509</a>
4145
4195
  </li></ul></dd>
4146
4196
 
4147
4197
 
@@ -4164,6 +4214,8 @@
4164
4214
 
4165
4215
 
4166
4216
 
4217
+
4218
+
4167
4219
  <h5>Returns:</h5>
4168
4220
 
4169
4221
 
@@ -4306,7 +4358,7 @@
4306
4358
 
4307
4359
  <dt class="tag-source">Source:</dt>
4308
4360
  <dd class="tag-source"><ul class="dummy"><li>
4309
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line500">line 500</a>
4361
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line519">line 519</a>
4310
4362
  </li></ul></dd>
4311
4363
 
4312
4364
 
@@ -4329,6 +4381,8 @@
4329
4381
 
4330
4382
 
4331
4383
 
4384
+
4385
+
4332
4386
  <h5>Returns:</h5>
4333
4387
 
4334
4388
 
@@ -4471,7 +4525,7 @@
4471
4525
 
4472
4526
  <dt class="tag-source">Source:</dt>
4473
4527
  <dd class="tag-source"><ul class="dummy"><li>
4474
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line510">line 510</a>
4528
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line529">line 529</a>
4475
4529
  </li></ul></dd>
4476
4530
 
4477
4531
 
@@ -4494,6 +4548,8 @@
4494
4548
 
4495
4549
 
4496
4550
 
4551
+
4552
+
4497
4553
  <h5>Returns:</h5>
4498
4554
 
4499
4555
 
@@ -4636,7 +4692,7 @@
4636
4692
 
4637
4693
  <dt class="tag-source">Source:</dt>
4638
4694
  <dd class="tag-source"><ul class="dummy"><li>
4639
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line520">line 520</a>
4695
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line539">line 539</a>
4640
4696
  </li></ul></dd>
4641
4697
 
4642
4698
 
@@ -4659,6 +4715,8 @@
4659
4715
 
4660
4716
 
4661
4717
 
4718
+
4719
+
4662
4720
  <h5>Returns:</h5>
4663
4721
 
4664
4722
 
@@ -4801,7 +4859,7 @@
4801
4859
 
4802
4860
  <dt class="tag-source">Source:</dt>
4803
4861
  <dd class="tag-source"><ul class="dummy"><li>
4804
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line530">line 530</a>
4862
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line549">line 549</a>
4805
4863
  </li></ul></dd>
4806
4864
 
4807
4865
 
@@ -4824,6 +4882,8 @@
4824
4882
 
4825
4883
 
4826
4884
 
4885
+
4886
+
4827
4887
  <h5>Returns:</h5>
4828
4888
 
4829
4889
 
@@ -4966,7 +5026,7 @@
4966
5026
 
4967
5027
  <dt class="tag-source">Source:</dt>
4968
5028
  <dd class="tag-source"><ul class="dummy"><li>
4969
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line540">line 540</a>
5029
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line559">line 559</a>
4970
5030
  </li></ul></dd>
4971
5031
 
4972
5032
 
@@ -4989,6 +5049,8 @@
4989
5049
 
4990
5050
 
4991
5051
 
5052
+
5053
+
4992
5054
  <h5>Returns:</h5>
4993
5055
 
4994
5056
 
@@ -5131,7 +5193,7 @@
5131
5193
 
5132
5194
  <dt class="tag-source">Source:</dt>
5133
5195
  <dd class="tag-source"><ul class="dummy"><li>
5134
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line550">line 550</a>
5196
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line569">line 569</a>
5135
5197
  </li></ul></dd>
5136
5198
 
5137
5199
 
@@ -5154,6 +5216,8 @@
5154
5216
 
5155
5217
 
5156
5218
 
5219
+
5220
+
5157
5221
  <h5>Returns:</h5>
5158
5222
 
5159
5223
 
@@ -5296,7 +5360,7 @@
5296
5360
 
5297
5361
  <dt class="tag-source">Source:</dt>
5298
5362
  <dd class="tag-source"><ul class="dummy"><li>
5299
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line560">line 560</a>
5363
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line579">line 579</a>
5300
5364
  </li></ul></dd>
5301
5365
 
5302
5366
 
@@ -5319,6 +5383,8 @@
5319
5383
 
5320
5384
 
5321
5385
 
5386
+
5387
+
5322
5388
  <h5>Returns:</h5>
5323
5389
 
5324
5390
 
@@ -5461,7 +5527,7 @@
5461
5527
 
5462
5528
  <dt class="tag-source">Source:</dt>
5463
5529
  <dd class="tag-source"><ul class="dummy"><li>
5464
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line570">line 570</a>
5530
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line589">line 589</a>
5465
5531
  </li></ul></dd>
5466
5532
 
5467
5533
 
@@ -5484,6 +5550,8 @@
5484
5550
 
5485
5551
 
5486
5552
 
5553
+
5554
+
5487
5555
  <h5>Returns:</h5>
5488
5556
 
5489
5557
 
@@ -5626,7 +5694,7 @@
5626
5694
 
5627
5695
  <dt class="tag-source">Source:</dt>
5628
5696
  <dd class="tag-source"><ul class="dummy"><li>
5629
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line580">line 580</a>
5697
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line599">line 599</a>
5630
5698
  </li></ul></dd>
5631
5699
 
5632
5700
 
@@ -5649,6 +5717,8 @@
5649
5717
 
5650
5718
 
5651
5719
 
5720
+
5721
+
5652
5722
  <h5>Returns:</h5>
5653
5723
 
5654
5724
 
@@ -5791,7 +5861,7 @@
5791
5861
 
5792
5862
  <dt class="tag-source">Source:</dt>
5793
5863
  <dd class="tag-source"><ul class="dummy"><li>
5794
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line590">line 590</a>
5864
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line609">line 609</a>
5795
5865
  </li></ul></dd>
5796
5866
 
5797
5867
 
@@ -5814,6 +5884,8 @@
5814
5884
 
5815
5885
 
5816
5886
 
5887
+
5888
+
5817
5889
  <h5>Returns:</h5>
5818
5890
 
5819
5891
 
@@ -5956,7 +6028,7 @@
5956
6028
 
5957
6029
  <dt class="tag-source">Source:</dt>
5958
6030
  <dd class="tag-source"><ul class="dummy"><li>
5959
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line600">line 600</a>
6031
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line619">line 619</a>
5960
6032
  </li></ul></dd>
5961
6033
 
5962
6034
 
@@ -5979,6 +6051,8 @@
5979
6051
 
5980
6052
 
5981
6053
 
6054
+
6055
+
5982
6056
  <h5>Returns:</h5>
5983
6057
 
5984
6058
 
@@ -6121,7 +6195,7 @@
6121
6195
 
6122
6196
  <dt class="tag-source">Source:</dt>
6123
6197
  <dd class="tag-source"><ul class="dummy"><li>
6124
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line610">line 610</a>
6198
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line629">line 629</a>
6125
6199
  </li></ul></dd>
6126
6200
 
6127
6201
 
@@ -6144,6 +6218,8 @@
6144
6218
 
6145
6219
 
6146
6220
 
6221
+
6222
+
6147
6223
  <h5>Returns:</h5>
6148
6224
 
6149
6225
 
@@ -6286,7 +6362,7 @@
6286
6362
 
6287
6363
  <dt class="tag-source">Source:</dt>
6288
6364
  <dd class="tag-source"><ul class="dummy"><li>
6289
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line620">line 620</a>
6365
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line639">line 639</a>
6290
6366
  </li></ul></dd>
6291
6367
 
6292
6368
 
@@ -6309,6 +6385,8 @@
6309
6385
 
6310
6386
 
6311
6387
 
6388
+
6389
+
6312
6390
  <h5>Returns:</h5>
6313
6391
 
6314
6392
 
@@ -6451,7 +6529,7 @@
6451
6529
 
6452
6530
  <dt class="tag-source">Source:</dt>
6453
6531
  <dd class="tag-source"><ul class="dummy"><li>
6454
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line630">line 630</a>
6532
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line649">line 649</a>
6455
6533
  </li></ul></dd>
6456
6534
 
6457
6535
 
@@ -6474,6 +6552,8 @@
6474
6552
 
6475
6553
 
6476
6554
 
6555
+
6556
+
6477
6557
  <h5>Returns:</h5>
6478
6558
 
6479
6559
 
@@ -6616,7 +6696,7 @@
6616
6696
 
6617
6697
  <dt class="tag-source">Source:</dt>
6618
6698
  <dd class="tag-source"><ul class="dummy"><li>
6619
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line660">line 660</a>
6699
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line679">line 679</a>
6620
6700
  </li></ul></dd>
6621
6701
 
6622
6702
 
@@ -6639,6 +6719,8 @@
6639
6719
 
6640
6720
 
6641
6721
 
6722
+
6723
+
6642
6724
  <h5>Returns:</h5>
6643
6725
 
6644
6726
 
@@ -6781,7 +6863,7 @@
6781
6863
 
6782
6864
  <dt class="tag-source">Source:</dt>
6783
6865
  <dd class="tag-source"><ul class="dummy"><li>
6784
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line640">line 640</a>
6866
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line659">line 659</a>
6785
6867
  </li></ul></dd>
6786
6868
 
6787
6869
 
@@ -6804,6 +6886,8 @@
6804
6886
 
6805
6887
 
6806
6888
 
6889
+
6890
+
6807
6891
  <h5>Returns:</h5>
6808
6892
 
6809
6893
 
@@ -6946,7 +7030,7 @@
6946
7030
 
6947
7031
  <dt class="tag-source">Source:</dt>
6948
7032
  <dd class="tag-source"><ul class="dummy"><li>
6949
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line670">line 670</a>
7033
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line689">line 689</a>
6950
7034
  </li></ul></dd>
6951
7035
 
6952
7036
 
@@ -6969,6 +7053,8 @@
6969
7053
 
6970
7054
 
6971
7055
 
7056
+
7057
+
6972
7058
  <h5>Returns:</h5>
6973
7059
 
6974
7060
 
@@ -7111,7 +7197,7 @@
7111
7197
 
7112
7198
  <dt class="tag-source">Source:</dt>
7113
7199
  <dd class="tag-source"><ul class="dummy"><li>
7114
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line650">line 650</a>
7200
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line669">line 669</a>
7115
7201
  </li></ul></dd>
7116
7202
 
7117
7203
 
@@ -7134,6 +7220,8 @@
7134
7220
 
7135
7221
 
7136
7222
 
7223
+
7224
+
7137
7225
  <h5>Returns:</h5>
7138
7226
 
7139
7227
 
@@ -7276,7 +7364,7 @@
7276
7364
 
7277
7365
  <dt class="tag-source">Source:</dt>
7278
7366
  <dd class="tag-source"><ul class="dummy"><li>
7279
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line680">line 680</a>
7367
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line699">line 699</a>
7280
7368
  </li></ul></dd>
7281
7369
 
7282
7370
 
@@ -7299,6 +7387,8 @@
7299
7387
 
7300
7388
 
7301
7389
 
7390
+
7391
+
7302
7392
  <h5>Returns:</h5>
7303
7393
 
7304
7394
 
@@ -7441,7 +7531,7 @@
7441
7531
 
7442
7532
  <dt class="tag-source">Source:</dt>
7443
7533
  <dd class="tag-source"><ul class="dummy"><li>
7444
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line690">line 690</a>
7534
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line709">line 709</a>
7445
7535
  </li></ul></dd>
7446
7536
 
7447
7537
 
@@ -7464,6 +7554,8 @@
7464
7554
 
7465
7555
 
7466
7556
 
7557
+
7558
+
7467
7559
  <h5>Returns:</h5>
7468
7560
 
7469
7561
 
@@ -7606,7 +7698,7 @@
7606
7698
 
7607
7699
  <dt class="tag-source">Source:</dt>
7608
7700
  <dd class="tag-source"><ul class="dummy"><li>
7609
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line700">line 700</a>
7701
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line719">line 719</a>
7610
7702
  </li></ul></dd>
7611
7703
 
7612
7704
 
@@ -7629,6 +7721,8 @@
7629
7721
 
7630
7722
 
7631
7723
 
7724
+
7725
+
7632
7726
  <h5>Returns:</h5>
7633
7727
 
7634
7728
 
@@ -7771,7 +7865,7 @@
7771
7865
 
7772
7866
  <dt class="tag-source">Source:</dt>
7773
7867
  <dd class="tag-source"><ul class="dummy"><li>
7774
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line710">line 710</a>
7868
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line729">line 729</a>
7775
7869
  </li></ul></dd>
7776
7870
 
7777
7871
 
@@ -7794,6 +7888,8 @@
7794
7888
 
7795
7889
 
7796
7890
 
7891
+
7892
+
7797
7893
  <h5>Returns:</h5>
7798
7894
 
7799
7895
 
@@ -7936,7 +8032,7 @@
7936
8032
 
7937
8033
  <dt class="tag-source">Source:</dt>
7938
8034
  <dd class="tag-source"><ul class="dummy"><li>
7939
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line720">line 720</a>
8035
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line739">line 739</a>
7940
8036
  </li></ul></dd>
7941
8037
 
7942
8038
 
@@ -7959,6 +8055,8 @@
7959
8055
 
7960
8056
 
7961
8057
 
8058
+
8059
+
7962
8060
  <h5>Returns:</h5>
7963
8061
 
7964
8062
 
@@ -8101,7 +8199,7 @@
8101
8199
 
8102
8200
  <dt class="tag-source">Source:</dt>
8103
8201
  <dd class="tag-source"><ul class="dummy"><li>
8104
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line730">line 730</a>
8202
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line749">line 749</a>
8105
8203
  </li></ul></dd>
8106
8204
 
8107
8205
 
@@ -8124,6 +8222,8 @@
8124
8222
 
8125
8223
 
8126
8224
 
8225
+
8226
+
8127
8227
  <h5>Returns:</h5>
8128
8228
 
8129
8229
 
@@ -8266,7 +8366,7 @@
8266
8366
 
8267
8367
  <dt class="tag-source">Source:</dt>
8268
8368
  <dd class="tag-source"><ul class="dummy"><li>
8269
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line740">line 740</a>
8369
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line759">line 759</a>
8270
8370
  </li></ul></dd>
8271
8371
 
8272
8372
 
@@ -8289,6 +8389,8 @@
8289
8389
 
8290
8390
 
8291
8391
 
8392
+
8393
+
8292
8394
  <h5>Returns:</h5>
8293
8395
 
8294
8396
 
@@ -8431,7 +8533,7 @@
8431
8533
 
8432
8534
  <dt class="tag-source">Source:</dt>
8433
8535
  <dd class="tag-source"><ul class="dummy"><li>
8434
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line750">line 750</a>
8536
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line769">line 769</a>
8435
8537
  </li></ul></dd>
8436
8538
 
8437
8539
 
@@ -8454,6 +8556,8 @@
8454
8556
 
8455
8557
 
8456
8558
 
8559
+
8560
+
8457
8561
  <h5>Returns:</h5>
8458
8562
 
8459
8563
 
@@ -8596,7 +8700,7 @@
8596
8700
 
8597
8701
  <dt class="tag-source">Source:</dt>
8598
8702
  <dd class="tag-source"><ul class="dummy"><li>
8599
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line760">line 760</a>
8703
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line779">line 779</a>
8600
8704
  </li></ul></dd>
8601
8705
 
8602
8706
 
@@ -8619,6 +8723,8 @@
8619
8723
 
8620
8724
 
8621
8725
 
8726
+
8727
+
8622
8728
  <h5>Returns:</h5>
8623
8729
 
8624
8730
 
@@ -8761,7 +8867,7 @@
8761
8867
 
8762
8868
  <dt class="tag-source">Source:</dt>
8763
8869
  <dd class="tag-source"><ul class="dummy"><li>
8764
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line770">line 770</a>
8870
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line789">line 789</a>
8765
8871
  </li></ul></dd>
8766
8872
 
8767
8873
 
@@ -8784,6 +8890,8 @@
8784
8890
 
8785
8891
 
8786
8892
 
8893
+
8894
+
8787
8895
  <h5>Returns:</h5>
8788
8896
 
8789
8897
 
@@ -8926,7 +9034,7 @@
8926
9034
 
8927
9035
  <dt class="tag-source">Source:</dt>
8928
9036
  <dd class="tag-source"><ul class="dummy"><li>
8929
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line780">line 780</a>
9037
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line799">line 799</a>
8930
9038
  </li></ul></dd>
8931
9039
 
8932
9040
 
@@ -8949,6 +9057,8 @@
8949
9057
 
8950
9058
 
8951
9059
 
9060
+
9061
+
8952
9062
  <h5>Returns:</h5>
8953
9063
 
8954
9064
 
@@ -9091,7 +9201,7 @@
9091
9201
 
9092
9202
  <dt class="tag-source">Source:</dt>
9093
9203
  <dd class="tag-source"><ul class="dummy"><li>
9094
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line790">line 790</a>
9204
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line809">line 809</a>
9095
9205
  </li></ul></dd>
9096
9206
 
9097
9207
 
@@ -9114,6 +9224,8 @@
9114
9224
 
9115
9225
 
9116
9226
 
9227
+
9228
+
9117
9229
  <h5>Returns:</h5>
9118
9230
 
9119
9231
 
@@ -9256,7 +9368,7 @@
9256
9368
 
9257
9369
  <dt class="tag-source">Source:</dt>
9258
9370
  <dd class="tag-source"><ul class="dummy"><li>
9259
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line800">line 800</a>
9371
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line819">line 819</a>
9260
9372
  </li></ul></dd>
9261
9373
 
9262
9374
 
@@ -9279,6 +9391,8 @@
9279
9391
 
9280
9392
 
9281
9393
 
9394
+
9395
+
9282
9396
  <h5>Returns:</h5>
9283
9397
 
9284
9398
 
@@ -9421,7 +9535,7 @@
9421
9535
 
9422
9536
  <dt class="tag-source">Source:</dt>
9423
9537
  <dd class="tag-source"><ul class="dummy"><li>
9424
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line810">line 810</a>
9538
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line829">line 829</a>
9425
9539
  </li></ul></dd>
9426
9540
 
9427
9541
 
@@ -9444,6 +9558,8 @@
9444
9558
 
9445
9559
 
9446
9560
 
9561
+
9562
+
9447
9563
  <h5>Returns:</h5>
9448
9564
 
9449
9565
 
@@ -9586,7 +9702,7 @@
9586
9702
 
9587
9703
  <dt class="tag-source">Source:</dt>
9588
9704
  <dd class="tag-source"><ul class="dummy"><li>
9589
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line820">line 820</a>
9705
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line839">line 839</a>
9590
9706
  </li></ul></dd>
9591
9707
 
9592
9708
 
@@ -9609,6 +9725,8 @@
9609
9725
 
9610
9726
 
9611
9727
 
9728
+
9729
+
9612
9730
  <h5>Returns:</h5>
9613
9731
 
9614
9732
 
@@ -9751,7 +9869,7 @@
9751
9869
 
9752
9870
  <dt class="tag-source">Source:</dt>
9753
9871
  <dd class="tag-source"><ul class="dummy"><li>
9754
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line830">line 830</a>
9872
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line849">line 849</a>
9755
9873
  </li></ul></dd>
9756
9874
 
9757
9875
 
@@ -9774,6 +9892,8 @@
9774
9892
 
9775
9893
 
9776
9894
 
9895
+
9896
+
9777
9897
  <h5>Returns:</h5>
9778
9898
 
9779
9899
 
@@ -9916,7 +10036,7 @@
9916
10036
 
9917
10037
  <dt class="tag-source">Source:</dt>
9918
10038
  <dd class="tag-source"><ul class="dummy"><li>
9919
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line840">line 840</a>
10039
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line859">line 859</a>
9920
10040
  </li></ul></dd>
9921
10041
 
9922
10042
 
@@ -9939,6 +10059,8 @@
9939
10059
 
9940
10060
 
9941
10061
 
10062
+
10063
+
9942
10064
  <h5>Returns:</h5>
9943
10065
 
9944
10066
 
@@ -10081,7 +10203,7 @@
10081
10203
 
10082
10204
  <dt class="tag-source">Source:</dt>
10083
10205
  <dd class="tag-source"><ul class="dummy"><li>
10084
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line850">line 850</a>
10206
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line869">line 869</a>
10085
10207
  </li></ul></dd>
10086
10208
 
10087
10209
 
@@ -10104,6 +10226,8 @@
10104
10226
 
10105
10227
 
10106
10228
 
10229
+
10230
+
10107
10231
  <h5>Returns:</h5>
10108
10232
 
10109
10233
 
@@ -10246,7 +10370,7 @@
10246
10370
 
10247
10371
  <dt class="tag-source">Source:</dt>
10248
10372
  <dd class="tag-source"><ul class="dummy"><li>
10249
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line860">line 860</a>
10373
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line879">line 879</a>
10250
10374
  </li></ul></dd>
10251
10375
 
10252
10376
 
@@ -10269,6 +10393,8 @@
10269
10393
 
10270
10394
 
10271
10395
 
10396
+
10397
+
10272
10398
  <h5>Returns:</h5>
10273
10399
 
10274
10400
 
@@ -10411,7 +10537,7 @@
10411
10537
 
10412
10538
  <dt class="tag-source">Source:</dt>
10413
10539
  <dd class="tag-source"><ul class="dummy"><li>
10414
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line870">line 870</a>
10540
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line889">line 889</a>
10415
10541
  </li></ul></dd>
10416
10542
 
10417
10543
 
@@ -10434,6 +10560,8 @@
10434
10560
 
10435
10561
 
10436
10562
 
10563
+
10564
+
10437
10565
  <h5>Returns:</h5>
10438
10566
 
10439
10567
 
@@ -10576,7 +10704,7 @@
10576
10704
 
10577
10705
  <dt class="tag-source">Source:</dt>
10578
10706
  <dd class="tag-source"><ul class="dummy"><li>
10579
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line880">line 880</a>
10707
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line899">line 899</a>
10580
10708
  </li></ul></dd>
10581
10709
 
10582
10710
 
@@ -10599,6 +10727,8 @@
10599
10727
 
10600
10728
 
10601
10729
 
10730
+
10731
+
10602
10732
  <h5>Returns:</h5>
10603
10733
 
10604
10734
 
@@ -10741,7 +10871,7 @@
10741
10871
 
10742
10872
  <dt class="tag-source">Source:</dt>
10743
10873
  <dd class="tag-source"><ul class="dummy"><li>
10744
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line890">line 890</a>
10874
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line909">line 909</a>
10745
10875
  </li></ul></dd>
10746
10876
 
10747
10877
 
@@ -10764,6 +10894,8 @@
10764
10894
 
10765
10895
 
10766
10896
 
10897
+
10898
+
10767
10899
  <h5>Returns:</h5>
10768
10900
 
10769
10901
 
@@ -10906,7 +11038,7 @@
10906
11038
 
10907
11039
  <dt class="tag-source">Source:</dt>
10908
11040
  <dd class="tag-source"><ul class="dummy"><li>
10909
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line900">line 900</a>
11041
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line919">line 919</a>
10910
11042
  </li></ul></dd>
10911
11043
 
10912
11044
 
@@ -10929,6 +11061,8 @@
10929
11061
 
10930
11062
 
10931
11063
 
11064
+
11065
+
10932
11066
  <h5>Returns:</h5>
10933
11067
 
10934
11068
 
@@ -11071,7 +11205,7 @@
11071
11205
 
11072
11206
  <dt class="tag-source">Source:</dt>
11073
11207
  <dd class="tag-source"><ul class="dummy"><li>
11074
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line910">line 910</a>
11208
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line929">line 929</a>
11075
11209
  </li></ul></dd>
11076
11210
 
11077
11211
 
@@ -11094,6 +11228,8 @@
11094
11228
 
11095
11229
 
11096
11230
 
11231
+
11232
+
11097
11233
  <h5>Returns:</h5>
11098
11234
 
11099
11235
 
@@ -11236,7 +11372,7 @@
11236
11372
 
11237
11373
  <dt class="tag-source">Source:</dt>
11238
11374
  <dd class="tag-source"><ul class="dummy"><li>
11239
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line920">line 920</a>
11375
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line939">line 939</a>
11240
11376
  </li></ul></dd>
11241
11377
 
11242
11378
 
@@ -11259,6 +11395,8 @@
11259
11395
 
11260
11396
 
11261
11397
 
11398
+
11399
+
11262
11400
  <h5>Returns:</h5>
11263
11401
 
11264
11402
 
@@ -11401,7 +11539,7 @@
11401
11539
 
11402
11540
  <dt class="tag-source">Source:</dt>
11403
11541
  <dd class="tag-source"><ul class="dummy"><li>
11404
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line930">line 930</a>
11542
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line949">line 949</a>
11405
11543
  </li></ul></dd>
11406
11544
 
11407
11545
 
@@ -11424,6 +11562,8 @@
11424
11562
 
11425
11563
 
11426
11564
 
11565
+
11566
+
11427
11567
  <h5>Returns:</h5>
11428
11568
 
11429
11569
 
@@ -11566,7 +11706,7 @@
11566
11706
 
11567
11707
  <dt class="tag-source">Source:</dt>
11568
11708
  <dd class="tag-source"><ul class="dummy"><li>
11569
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line940">line 940</a>
11709
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line959">line 959</a>
11570
11710
  </li></ul></dd>
11571
11711
 
11572
11712
 
@@ -11589,6 +11729,8 @@
11589
11729
 
11590
11730
 
11591
11731
 
11732
+
11733
+
11592
11734
  <h5>Returns:</h5>
11593
11735
 
11594
11736
 
@@ -11731,7 +11873,7 @@
11731
11873
 
11732
11874
  <dt class="tag-source">Source:</dt>
11733
11875
  <dd class="tag-source"><ul class="dummy"><li>
11734
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line950">line 950</a>
11876
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line969">line 969</a>
11735
11877
  </li></ul></dd>
11736
11878
 
11737
11879
 
@@ -11754,6 +11896,8 @@
11754
11896
 
11755
11897
 
11756
11898
 
11899
+
11900
+
11757
11901
  <h5>Returns:</h5>
11758
11902
 
11759
11903
 
@@ -11896,7 +12040,7 @@
11896
12040
 
11897
12041
  <dt class="tag-source">Source:</dt>
11898
12042
  <dd class="tag-source"><ul class="dummy"><li>
11899
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line960">line 960</a>
12043
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line979">line 979</a>
11900
12044
  </li></ul></dd>
11901
12045
 
11902
12046
 
@@ -11919,6 +12063,8 @@
11919
12063
 
11920
12064
 
11921
12065
 
12066
+
12067
+
11922
12068
  <h5>Returns:</h5>
11923
12069
 
11924
12070
 
@@ -12061,7 +12207,7 @@
12061
12207
 
12062
12208
  <dt class="tag-source">Source:</dt>
12063
12209
  <dd class="tag-source"><ul class="dummy"><li>
12064
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line970">line 970</a>
12210
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line989">line 989</a>
12065
12211
  </li></ul></dd>
12066
12212
 
12067
12213
 
@@ -12084,6 +12230,8 @@
12084
12230
 
12085
12231
 
12086
12232
 
12233
+
12234
+
12087
12235
  <h5>Returns:</h5>
12088
12236
 
12089
12237
 
@@ -12226,7 +12374,7 @@
12226
12374
 
12227
12375
  <dt class="tag-source">Source:</dt>
12228
12376
  <dd class="tag-source"><ul class="dummy"><li>
12229
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line980">line 980</a>
12377
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line999">line 999</a>
12230
12378
  </li></ul></dd>
12231
12379
 
12232
12380
 
@@ -12249,6 +12397,8 @@
12249
12397
 
12250
12398
 
12251
12399
 
12400
+
12401
+
12252
12402
  <h5>Returns:</h5>
12253
12403
 
12254
12404
 
@@ -12391,7 +12541,7 @@
12391
12541
 
12392
12542
  <dt class="tag-source">Source:</dt>
12393
12543
  <dd class="tag-source"><ul class="dummy"><li>
12394
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line990">line 990</a>
12544
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1009">line 1009</a>
12395
12545
  </li></ul></dd>
12396
12546
 
12397
12547
 
@@ -12414,6 +12564,8 @@
12414
12564
 
12415
12565
 
12416
12566
 
12567
+
12568
+
12417
12569
  <h5>Returns:</h5>
12418
12570
 
12419
12571
 
@@ -12556,7 +12708,7 @@
12556
12708
 
12557
12709
  <dt class="tag-source">Source:</dt>
12558
12710
  <dd class="tag-source"><ul class="dummy"><li>
12559
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1000">line 1000</a>
12711
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1019">line 1019</a>
12560
12712
  </li></ul></dd>
12561
12713
 
12562
12714
 
@@ -12579,6 +12731,8 @@
12579
12731
 
12580
12732
 
12581
12733
 
12734
+
12735
+
12582
12736
  <h5>Returns:</h5>
12583
12737
 
12584
12738
 
@@ -12721,7 +12875,7 @@
12721
12875
 
12722
12876
  <dt class="tag-source">Source:</dt>
12723
12877
  <dd class="tag-source"><ul class="dummy"><li>
12724
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1010">line 1010</a>
12878
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1029">line 1029</a>
12725
12879
  </li></ul></dd>
12726
12880
 
12727
12881
 
@@ -12744,6 +12898,8 @@
12744
12898
 
12745
12899
 
12746
12900
 
12901
+
12902
+
12747
12903
  <h5>Returns:</h5>
12748
12904
 
12749
12905
 
@@ -12886,7 +13042,7 @@
12886
13042
 
12887
13043
  <dt class="tag-source">Source:</dt>
12888
13044
  <dd class="tag-source"><ul class="dummy"><li>
12889
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1020">line 1020</a>
13045
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1039">line 1039</a>
12890
13046
  </li></ul></dd>
12891
13047
 
12892
13048
 
@@ -12909,6 +13065,8 @@
12909
13065
 
12910
13066
 
12911
13067
 
13068
+
13069
+
12912
13070
  <h5>Returns:</h5>
12913
13071
 
12914
13072
 
@@ -13051,7 +13209,7 @@
13051
13209
 
13052
13210
  <dt class="tag-source">Source:</dt>
13053
13211
  <dd class="tag-source"><ul class="dummy"><li>
13054
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1030">line 1030</a>
13212
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1049">line 1049</a>
13055
13213
  </li></ul></dd>
13056
13214
 
13057
13215
 
@@ -13074,6 +13232,8 @@
13074
13232
 
13075
13233
 
13076
13234
 
13235
+
13236
+
13077
13237
  <h5>Returns:</h5>
13078
13238
 
13079
13239
 
@@ -13216,7 +13376,7 @@
13216
13376
 
13217
13377
  <dt class="tag-source">Source:</dt>
13218
13378
  <dd class="tag-source"><ul class="dummy"><li>
13219
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1040">line 1040</a>
13379
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1059">line 1059</a>
13220
13380
  </li></ul></dd>
13221
13381
 
13222
13382
 
@@ -13239,6 +13399,8 @@
13239
13399
 
13240
13400
 
13241
13401
 
13402
+
13403
+
13242
13404
  <h5>Returns:</h5>
13243
13405
 
13244
13406
 
@@ -13381,7 +13543,7 @@
13381
13543
 
13382
13544
  <dt class="tag-source">Source:</dt>
13383
13545
  <dd class="tag-source"><ul class="dummy"><li>
13384
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1050">line 1050</a>
13546
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1069">line 1069</a>
13385
13547
  </li></ul></dd>
13386
13548
 
13387
13549
 
@@ -13404,6 +13566,8 @@
13404
13566
 
13405
13567
 
13406
13568
 
13569
+
13570
+
13407
13571
  <h5>Returns:</h5>
13408
13572
 
13409
13573
 
@@ -13546,7 +13710,7 @@
13546
13710
 
13547
13711
  <dt class="tag-source">Source:</dt>
13548
13712
  <dd class="tag-source"><ul class="dummy"><li>
13549
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1060">line 1060</a>
13713
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1079">line 1079</a>
13550
13714
  </li></ul></dd>
13551
13715
 
13552
13716
 
@@ -13569,6 +13733,8 @@
13569
13733
 
13570
13734
 
13571
13735
 
13736
+
13737
+
13572
13738
  <h5>Returns:</h5>
13573
13739
 
13574
13740
 
@@ -13711,7 +13877,7 @@
13711
13877
 
13712
13878
  <dt class="tag-source">Source:</dt>
13713
13879
  <dd class="tag-source"><ul class="dummy"><li>
13714
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1070">line 1070</a>
13880
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1089">line 1089</a>
13715
13881
  </li></ul></dd>
13716
13882
 
13717
13883
 
@@ -13734,6 +13900,8 @@
13734
13900
 
13735
13901
 
13736
13902
 
13903
+
13904
+
13737
13905
  <h5>Returns:</h5>
13738
13906
 
13739
13907
 
@@ -13876,7 +14044,7 @@
13876
14044
 
13877
14045
  <dt class="tag-source">Source:</dt>
13878
14046
  <dd class="tag-source"><ul class="dummy"><li>
13879
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1080">line 1080</a>
14047
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1099">line 1099</a>
13880
14048
  </li></ul></dd>
13881
14049
 
13882
14050
 
@@ -13899,6 +14067,8 @@
13899
14067
 
13900
14068
 
13901
14069
 
14070
+
14071
+
13902
14072
  <h5>Returns:</h5>
13903
14073
 
13904
14074
 
@@ -14041,7 +14211,7 @@
14041
14211
 
14042
14212
  <dt class="tag-source">Source:</dt>
14043
14213
  <dd class="tag-source"><ul class="dummy"><li>
14044
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1090">line 1090</a>
14214
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1109">line 1109</a>
14045
14215
  </li></ul></dd>
14046
14216
 
14047
14217
 
@@ -14064,6 +14234,8 @@
14064
14234
 
14065
14235
 
14066
14236
 
14237
+
14238
+
14067
14239
  <h5>Returns:</h5>
14068
14240
 
14069
14241
 
@@ -14206,7 +14378,7 @@
14206
14378
 
14207
14379
  <dt class="tag-source">Source:</dt>
14208
14380
  <dd class="tag-source"><ul class="dummy"><li>
14209
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1100">line 1100</a>
14381
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1119">line 1119</a>
14210
14382
  </li></ul></dd>
14211
14383
 
14212
14384
 
@@ -14229,6 +14401,8 @@
14229
14401
 
14230
14402
 
14231
14403
 
14404
+
14405
+
14232
14406
  <h5>Returns:</h5>
14233
14407
 
14234
14408
 
@@ -14371,7 +14545,7 @@
14371
14545
 
14372
14546
  <dt class="tag-source">Source:</dt>
14373
14547
  <dd class="tag-source"><ul class="dummy"><li>
14374
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1110">line 1110</a>
14548
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1129">line 1129</a>
14375
14549
  </li></ul></dd>
14376
14550
 
14377
14551
 
@@ -14394,6 +14568,8 @@
14394
14568
 
14395
14569
 
14396
14570
 
14571
+
14572
+
14397
14573
  <h5>Returns:</h5>
14398
14574
 
14399
14575
 
@@ -14536,7 +14712,7 @@
14536
14712
 
14537
14713
  <dt class="tag-source">Source:</dt>
14538
14714
  <dd class="tag-source"><ul class="dummy"><li>
14539
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1120">line 1120</a>
14715
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1139">line 1139</a>
14540
14716
  </li></ul></dd>
14541
14717
 
14542
14718
 
@@ -14559,6 +14735,8 @@
14559
14735
 
14560
14736
 
14561
14737
 
14738
+
14739
+
14562
14740
  <h5>Returns:</h5>
14563
14741
 
14564
14742
 
@@ -14701,7 +14879,7 @@
14701
14879
 
14702
14880
  <dt class="tag-source">Source:</dt>
14703
14881
  <dd class="tag-source"><ul class="dummy"><li>
14704
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1130">line 1130</a>
14882
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1149">line 1149</a>
14705
14883
  </li></ul></dd>
14706
14884
 
14707
14885
 
@@ -14724,6 +14902,8 @@
14724
14902
 
14725
14903
 
14726
14904
 
14905
+
14906
+
14727
14907
  <h5>Returns:</h5>
14728
14908
 
14729
14909
 
@@ -14866,7 +15046,7 @@
14866
15046
 
14867
15047
  <dt class="tag-source">Source:</dt>
14868
15048
  <dd class="tag-source"><ul class="dummy"><li>
14869
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1140">line 1140</a>
15049
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1159">line 1159</a>
14870
15050
  </li></ul></dd>
14871
15051
 
14872
15052
 
@@ -14889,6 +15069,8 @@
14889
15069
 
14890
15070
 
14891
15071
 
15072
+
15073
+
14892
15074
  <h5>Returns:</h5>
14893
15075
 
14894
15076
 
@@ -15031,7 +15213,7 @@
15031
15213
 
15032
15214
  <dt class="tag-source">Source:</dt>
15033
15215
  <dd class="tag-source"><ul class="dummy"><li>
15034
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1150">line 1150</a>
15216
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1169">line 1169</a>
15035
15217
  </li></ul></dd>
15036
15218
 
15037
15219
 
@@ -15054,6 +15236,8 @@
15054
15236
 
15055
15237
 
15056
15238
 
15239
+
15240
+
15057
15241
  <h5>Returns:</h5>
15058
15242
 
15059
15243
 
@@ -15196,7 +15380,7 @@
15196
15380
 
15197
15381
  <dt class="tag-source">Source:</dt>
15198
15382
  <dd class="tag-source"><ul class="dummy"><li>
15199
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1160">line 1160</a>
15383
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1179">line 1179</a>
15200
15384
  </li></ul></dd>
15201
15385
 
15202
15386
 
@@ -15219,6 +15403,8 @@
15219
15403
 
15220
15404
 
15221
15405
 
15406
+
15407
+
15222
15408
  <h5>Returns:</h5>
15223
15409
 
15224
15410
 
@@ -15361,7 +15547,7 @@
15361
15547
 
15362
15548
  <dt class="tag-source">Source:</dt>
15363
15549
  <dd class="tag-source"><ul class="dummy"><li>
15364
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1170">line 1170</a>
15550
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1189">line 1189</a>
15365
15551
  </li></ul></dd>
15366
15552
 
15367
15553
 
@@ -15384,6 +15570,8 @@
15384
15570
 
15385
15571
 
15386
15572
 
15573
+
15574
+
15387
15575
  <h5>Returns:</h5>
15388
15576
 
15389
15577
 
@@ -15526,7 +15714,7 @@
15526
15714
 
15527
15715
  <dt class="tag-source">Source:</dt>
15528
15716
  <dd class="tag-source"><ul class="dummy"><li>
15529
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1180">line 1180</a>
15717
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1199">line 1199</a>
15530
15718
  </li></ul></dd>
15531
15719
 
15532
15720
 
@@ -15549,6 +15737,8 @@
15549
15737
 
15550
15738
 
15551
15739
 
15740
+
15741
+
15552
15742
  <h5>Returns:</h5>
15553
15743
 
15554
15744
 
@@ -15691,7 +15881,7 @@
15691
15881
 
15692
15882
  <dt class="tag-source">Source:</dt>
15693
15883
  <dd class="tag-source"><ul class="dummy"><li>
15694
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1190">line 1190</a>
15884
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1209">line 1209</a>
15695
15885
  </li></ul></dd>
15696
15886
 
15697
15887
 
@@ -15714,6 +15904,8 @@
15714
15904
 
15715
15905
 
15716
15906
 
15907
+
15908
+
15717
15909
  <h5>Returns:</h5>
15718
15910
 
15719
15911
 
@@ -15856,7 +16048,7 @@
15856
16048
 
15857
16049
  <dt class="tag-source">Source:</dt>
15858
16050
  <dd class="tag-source"><ul class="dummy"><li>
15859
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1200">line 1200</a>
16051
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1219">line 1219</a>
15860
16052
  </li></ul></dd>
15861
16053
 
15862
16054
 
@@ -15879,6 +16071,8 @@
15879
16071
 
15880
16072
 
15881
16073
 
16074
+
16075
+
15882
16076
  <h5>Returns:</h5>
15883
16077
 
15884
16078
 
@@ -16021,7 +16215,7 @@
16021
16215
 
16022
16216
  <dt class="tag-source">Source:</dt>
16023
16217
  <dd class="tag-source"><ul class="dummy"><li>
16024
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1210">line 1210</a>
16218
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1229">line 1229</a>
16025
16219
  </li></ul></dd>
16026
16220
 
16027
16221
 
@@ -16044,6 +16238,8 @@
16044
16238
 
16045
16239
 
16046
16240
 
16241
+
16242
+
16047
16243
  <h5>Returns:</h5>
16048
16244
 
16049
16245
 
@@ -16186,7 +16382,7 @@
16186
16382
 
16187
16383
  <dt class="tag-source">Source:</dt>
16188
16384
  <dd class="tag-source"><ul class="dummy"><li>
16189
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line250">line 250</a>
16385
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line269">line 269</a>
16190
16386
  </li></ul></dd>
16191
16387
 
16192
16388
 
@@ -16209,6 +16405,8 @@
16209
16405
 
16210
16406
 
16211
16407
 
16408
+
16409
+
16212
16410
  <h5>Returns:</h5>
16213
16411
 
16214
16412
 
@@ -16351,7 +16549,7 @@
16351
16549
 
16352
16550
  <dt class="tag-source">Source:</dt>
16353
16551
  <dd class="tag-source"><ul class="dummy"><li>
16354
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1220">line 1220</a>
16552
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1239">line 1239</a>
16355
16553
  </li></ul></dd>
16356
16554
 
16357
16555
 
@@ -16374,6 +16572,8 @@
16374
16572
 
16375
16573
 
16376
16574
 
16575
+
16576
+
16377
16577
  <h5>Returns:</h5>
16378
16578
 
16379
16579
 
@@ -16516,7 +16716,7 @@
16516
16716
 
16517
16717
  <dt class="tag-source">Source:</dt>
16518
16718
  <dd class="tag-source"><ul class="dummy"><li>
16519
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1230">line 1230</a>
16719
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1249">line 1249</a>
16520
16720
  </li></ul></dd>
16521
16721
 
16522
16722
 
@@ -16539,6 +16739,8 @@
16539
16739
 
16540
16740
 
16541
16741
 
16742
+
16743
+
16542
16744
  <h5>Returns:</h5>
16543
16745
 
16544
16746
 
@@ -16681,7 +16883,7 @@
16681
16883
 
16682
16884
  <dt class="tag-source">Source:</dt>
16683
16885
  <dd class="tag-source"><ul class="dummy"><li>
16684
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1240">line 1240</a>
16886
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1259">line 1259</a>
16685
16887
  </li></ul></dd>
16686
16888
 
16687
16889
 
@@ -16704,6 +16906,8 @@
16704
16906
 
16705
16907
 
16706
16908
 
16909
+
16910
+
16707
16911
  <h5>Returns:</h5>
16708
16912
 
16709
16913
 
@@ -16846,7 +17050,7 @@
16846
17050
 
16847
17051
  <dt class="tag-source">Source:</dt>
16848
17052
  <dd class="tag-source"><ul class="dummy"><li>
16849
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1250">line 1250</a>
17053
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1269">line 1269</a>
16850
17054
  </li></ul></dd>
16851
17055
 
16852
17056
 
@@ -16869,6 +17073,8 @@
16869
17073
 
16870
17074
 
16871
17075
 
17076
+
17077
+
16872
17078
  <h5>Returns:</h5>
16873
17079
 
16874
17080
 
@@ -17011,7 +17217,7 @@
17011
17217
 
17012
17218
  <dt class="tag-source">Source:</dt>
17013
17219
  <dd class="tag-source"><ul class="dummy"><li>
17014
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1260">line 1260</a>
17220
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1279">line 1279</a>
17015
17221
  </li></ul></dd>
17016
17222
 
17017
17223
 
@@ -17034,6 +17240,8 @@
17034
17240
 
17035
17241
 
17036
17242
 
17243
+
17244
+
17037
17245
  <h5>Returns:</h5>
17038
17246
 
17039
17247
 
@@ -17176,7 +17384,7 @@
17176
17384
 
17177
17385
  <dt class="tag-source">Source:</dt>
17178
17386
  <dd class="tag-source"><ul class="dummy"><li>
17179
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1270">line 1270</a>
17387
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line1289">line 1289</a>
17180
17388
  </li></ul></dd>
17181
17389
 
17182
17390
 
@@ -17199,6 +17407,8 @@
17199
17407
 
17200
17408
 
17201
17409
 
17410
+
17411
+
17202
17412
  <h5>Returns:</h5>
17203
17413
 
17204
17414
 
@@ -17238,13 +17448,13 @@
17238
17448
  </div>
17239
17449
 
17240
17450
  <nav>
17241
- <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="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="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="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="SubgraphStrategy.html">SubgraphStrategy</a></li><li><a href="TextP.html">TextP</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#statics">statics</a></li></ul>
17451
+ <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="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="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="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#statics">statics</a></li></ul>
17242
17452
  </nav>
17243
17453
 
17244
17454
  <br class="clear">
17245
17455
 
17246
17456
  <footer>
17247
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Jul 26 2021 08:59:15 GMT+0200 (CEST)
17457
+ Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a> on Fri Jan 14 2022 09:04:29 GMT-0500 (Eastern Standard Time)
17248
17458
  </footer>
17249
17459
 
17250
17460
  <script> prettyPrint(); </script>