@@ -393,7 +393,7 @@ extension Graph {
393
393
/// path and leaf value of each node are passed to the closure.
394
394
///
395
395
/// - Throws: Whatever is thrown by `body`.
396
- private func _forEach< E > ( keyPath: [ K ] , _ body: ( Element ) throws ( E ) -> Void ) throws ( E ) {
396
+ private func _forEach( keyPath: [ K ] , _ body: ( Element ) throws -> Void ) rethrows -> Void {
397
397
try body ( ( keyPath, value) )
398
398
for (key, child) in children {
399
399
var childKeyPath = keyPath
@@ -411,7 +411,7 @@ extension Graph {
411
411
/// key path and leaf value of each node are passed to the closure.
412
412
///
413
413
/// - Throws: Whatever is thrown by `body`.
414
- private func _forEach< E > ( keyPath: [ K ] , _ body: ( Element ) async throws ( E ) -> Void ) async throws ( E ) {
414
+ private func _forEach( keyPath: [ K ] , _ body: ( Element ) async throws -> Void ) async rethrows -> Void {
415
415
try await body ( ( keyPath, value) )
416
416
for (key, child) in children {
417
417
var childKeyPath = keyPath
@@ -429,9 +429,9 @@ extension Graph {
429
429
/// - Throws: Whatever is thrown by `body`.
430
430
///
431
431
/// This function iterates depth-first.
432
- func forEach< E > ( _ body: ( Element ) throws ( E ) -> Void ) throws ( E ) {
433
- try _forEach ( keyPath: [ ] ) { ( element ) throws ( E ) in
434
- try body ( element )
432
+ func forEach( _ body: ( Element ) throws -> Void ) rethrows -> Void {
433
+ try _forEach ( keyPath: [ ] ) {
434
+ try body ( ( $0 , $1 ) )
435
435
}
436
436
}
437
437
@@ -444,9 +444,9 @@ extension Graph {
444
444
/// - Throws: Whatever is thrown by `body`.
445
445
///
446
446
/// This function iterates depth-first.
447
- func forEach< E > ( _ body: ( Element ) async throws ( E ) -> Void ) async throws ( E ) {
448
- try await _forEach ( keyPath: [ ] ) { ( element ) async throws ( E ) in
449
- try await body ( element )
447
+ func forEach( _ body: ( Element ) async throws -> Void ) async rethrows -> Void {
448
+ try await _forEach ( keyPath: [ ] ) {
449
+ try await body ( ( $0 , $1 ) )
450
450
}
451
451
}
452
452
@@ -496,9 +496,9 @@ extension Graph {
496
496
/// - Throws: Whatever is thrown by `transform`.
497
497
///
498
498
/// This function iterates depth-first.
499
- func compactMapValues< U, E > ( _ transform: ( Element ) throws ( E ) -> U ? ) throws ( E ) -> Graph < K , U > ? {
500
- try compactMapValues { ( element ) throws ( E ) in
501
- try transform ( element ) . map { ( $0, false ) }
499
+ func compactMapValues< U> ( _ transform: ( Element ) throws -> U ? ) rethrows -> Graph < K , U > ? {
500
+ try compactMapValues {
501
+ try transform ( $0 ) . map { ( $0, false ) }
502
502
}
503
503
}
504
504
@@ -518,9 +518,9 @@ extension Graph {
518
518
/// - Throws: Whatever is thrown by `transform`.
519
519
///
520
520
/// This function iterates depth-first.
521
- func compactMapValues< U, E > ( _ transform: ( Element ) async throws ( E ) -> U ? ) async throws ( E ) -> Graph < K , U > ? {
522
- try await compactMapValues { ( element ) async throws ( E ) in
523
- try await transform ( element ) . map { ( $0, false ) }
521
+ func compactMapValues< U> ( _ transform: ( Element ) async throws -> U ? ) async rethrows -> Graph < K , U > ? {
522
+ try await compactMapValues {
523
+ try await transform ( $0 ) . map { ( $0, false ) }
524
524
}
525
525
}
526
526
@@ -543,9 +543,9 @@ extension Graph {
543
543
/// - Throws: Whatever is thrown by `transform`.
544
544
///
545
545
/// This function iterates depth-first.
546
- func compactMapValues< U, E > ( _ transform: ( Element ) throws ( E ) -> ( U , recursivelyApply: Bool ) ? ) throws ( E ) -> Graph < K , U > ? {
547
- try _compactMapValues ( keyPath: [ ] ) { ( element ) throws ( E ) in
548
- try transform ( element )
546
+ func compactMapValues< U> ( _ transform: ( Element ) throws -> ( U , recursivelyApply: Bool ) ? ) rethrows -> Graph < K , U > ? {
547
+ try _compactMapValues ( keyPath: [ ] ) {
548
+ try transform ( ( $0 , $1 ) )
549
549
}
550
550
}
551
551
@@ -563,7 +563,7 @@ extension Graph {
563
563
/// child nodes are omitted from the new graph.
564
564
///
565
565
/// - Throws: Whatever is thrown by `transform`.
566
- private func _compactMapValues< U, E > ( keyPath: [ K ] , _ transform: ( Element ) throws ( E ) -> ( U , recursivelyApply: Bool ) ? ) throws ( E ) -> Graph < K , U > ? {
566
+ private func _compactMapValues< U> ( keyPath: [ K ] , _ transform: ( Element ) throws -> ( U , recursivelyApply: Bool ) ? ) rethrows -> Graph < K , U > ? {
567
567
guard let ( newValue, recursivelyApply) = try transform ( ( keyPath, value) ) else {
568
568
return nil
569
569
}
@@ -603,9 +603,9 @@ extension Graph {
603
603
/// - Throws: Whatever is thrown by `transform`.
604
604
///
605
605
/// This function iterates depth-first.
606
- func compactMapValues< U, E > ( _ transform: ( Element ) async throws ( E ) -> ( U , recursivelyApply: Bool ) ? ) async throws ( E ) -> Graph < K , U > ? {
607
- try await _compactMapValues ( keyPath: [ ] ) { ( element ) async throws ( E ) in
608
- try await transform ( element )
606
+ func compactMapValues< U> ( _ transform: ( Element ) async throws -> ( U , recursivelyApply: Bool ) ? ) async rethrows -> Graph < K , U > ? {
607
+ try await _compactMapValues ( keyPath: [ ] ) {
608
+ try await transform ( ( $0 , $1 ) )
609
609
}
610
610
}
611
611
@@ -623,7 +623,7 @@ extension Graph {
623
623
/// child nodes are omitted from the new graph.
624
624
///
625
625
/// - Throws: Whatever is thrown by `transform`.
626
- private func _compactMapValues< U, E > ( keyPath: [ K ] , _ transform: ( Element ) async throws ( E ) -> ( U , recursivelyApply: Bool ) ? ) async throws ( E ) -> Graph < K , U > ? {
626
+ private func _compactMapValues< U> ( keyPath: [ K ] , _ transform: ( Element ) async throws -> ( U , recursivelyApply: Bool ) ? ) async rethrows -> Graph < K , U > ? {
627
627
guard let ( newValue, recursivelyApply) = try await transform ( ( keyPath, value) ) else {
628
628
return nil
629
629
}
@@ -658,7 +658,7 @@ extension Graph {
658
658
/// - Throws: Whatever is thrown by `transform`.
659
659
///
660
660
/// This function iterates depth-first.
661
- func mapValues< U, E > ( _ transform: ( Element ) throws ( E ) -> U ) throws ( E ) -> Graph < K , U > {
661
+ func mapValues< U> ( _ transform: ( Element ) throws -> U ) rethrows -> Graph < K , U > {
662
662
try compactMapValues ( transform) !
663
663
}
664
664
@@ -676,7 +676,7 @@ extension Graph {
676
676
/// - Throws: Whatever is thrown by `transform`.
677
677
///
678
678
/// This function iterates depth-first.
679
- func mapValues< U, E > ( _ transform: ( Element ) async throws ( E ) -> U ) async throws ( E ) -> Graph < K , U > {
679
+ func mapValues< U> ( _ transform: ( Element ) async throws -> U ) async rethrows -> Graph < K , U > {
680
680
try await compactMapValues ( transform) !
681
681
}
682
682
@@ -698,7 +698,7 @@ extension Graph {
698
698
/// - Throws: Whatever is thrown by `transform`.
699
699
///
700
700
/// This function iterates depth-first.
701
- func mapValues< U, E > ( _ transform: ( Element ) throws ( E ) -> ( U , recursivelyApply: Bool ) ) throws ( E ) -> Graph < K , U > {
701
+ func mapValues< U> ( _ transform: ( Element ) throws -> ( U , recursivelyApply: Bool ) ) rethrows -> Graph < K , U > {
702
702
try compactMapValues ( transform) !
703
703
}
704
704
@@ -720,7 +720,7 @@ extension Graph {
720
720
/// - Throws: Whatever is thrown by `transform`.
721
721
///
722
722
/// This function iterates depth-first.
723
- func mapValues< U, E > ( _ transform: ( Element ) async throws ( E ) -> ( U , recursivelyApply: Bool ) ) async throws ( E ) -> Graph < K , U > {
723
+ func mapValues< U> ( _ transform: ( Element ) async throws -> ( U , recursivelyApply: Bool ) ) async rethrows -> Graph < K , U > {
724
724
try await compactMapValues ( transform) !
725
725
}
726
726
@@ -738,7 +738,7 @@ extension Graph {
738
738
/// - Throws: Whatever is thrown by `transform`.
739
739
///
740
740
/// This function iterates depth-first.
741
- func map< U, E > ( _ transform: ( Element ) throws ( E ) -> U ) throws ( E ) -> [ U ] {
741
+ func map< U> ( _ transform: ( Element ) throws -> U ) rethrows -> [ U ] {
742
742
try compactMap ( transform)
743
743
}
744
744
@@ -756,7 +756,7 @@ extension Graph {
756
756
/// - Throws: Whatever is thrown by `transform`.
757
757
///
758
758
/// This function iterates depth-first.
759
- func map< U, E > ( _ transform: ( Element ) async throws ( E ) -> U ) async throws ( E ) -> [ U ] {
759
+ func map< U> ( _ transform: ( Element ) async throws -> U ) async rethrows -> [ U ] {
760
760
try await compactMap ( transform)
761
761
}
762
762
@@ -776,10 +776,10 @@ extension Graph {
776
776
/// - Throws: Whatever is thrown by `transform`.
777
777
///
778
778
/// This function iterates depth-first.
779
- func compactMap< U, E > ( _ transform: ( Element ) throws ( E ) -> U ? ) throws ( E ) -> [ U ] {
779
+ func compactMap< U> ( _ transform: ( Element ) throws -> U ? ) rethrows -> [ U ] {
780
780
var result = [ U] ( )
781
781
782
- try forEach { ( keyPath, value) throws ( E ) in
782
+ try forEach { keyPath, value in
783
783
if let newValue = try transform ( ( keyPath, value) ) {
784
784
result. append ( newValue)
785
785
}
@@ -804,10 +804,10 @@ extension Graph {
804
804
/// - Throws: Whatever is thrown by `transform`.
805
805
///
806
806
/// This function iterates depth-first.
807
- func compactMap< U, E > ( _ transform: ( Element ) async throws ( E ) -> U ? ) async throws ( E ) -> [ U ] {
807
+ func compactMap< U> ( _ transform: ( Element ) async throws -> U ? ) async rethrows -> [ U ] {
808
808
var result = [ U] ( )
809
809
810
- try await forEach { ( keyPath, value) async throws ( E ) in
810
+ try await forEach { keyPath, value in
811
811
if let newValue = try await transform ( ( keyPath, value) ) {
812
812
result. append ( newValue)
813
813
}
@@ -829,7 +829,7 @@ extension Graph {
829
829
/// - Throws: Whatever is thrown by `transform`.
830
830
///
831
831
/// This function iterates depth-first.
832
- func flatMap< S, E > ( _ transform: ( Element ) throws ( E ) -> S ) throws ( E ) -> [ S . Element ] where S: Sequence {
832
+ func flatMap< S> ( _ transform: ( Element ) throws -> S ) rethrows -> [ S . Element ] where S: Sequence {
833
833
try map ( transform) . flatMap { $0 }
834
834
}
835
835
@@ -846,7 +846,7 @@ extension Graph {
846
846
/// - Throws: Whatever is thrown by `transform`.
847
847
///
848
848
/// This function iterates depth-first.
849
- func flatMap< S, E > ( _ transform: ( Element ) async throws ( E ) -> S ) async throws ( E ) -> [ S . Element ] where S: Sequence {
849
+ func flatMap< S> ( _ transform: ( Element ) async throws -> S ) async rethrows -> [ S . Element ] where S: Sequence {
850
850
try await map ( transform) . flatMap { $0 }
851
851
}
852
852
}
0 commit comments