@@ -1048,7 +1048,7 @@ extension ProgressManager {
1048
1048
1049
1049
/// Reads properties that convey additional information about progress.
1050
1050
public func withProperties <T , E : Error >(
1051
- _ closure : (sending ProgressManager. Values) throws (E) -> sending T
1051
+ _ closure : (sending Values) throws (E) -> sending T
1052
1052
) throws (E) -> T
1053
1053
1054
1054
/// Returns a summary for a custom integer property across the progress subtree.
@@ -1059,7 +1059,7 @@ extension ProgressManager {
1059
1059
/// - Parameter property: The type of the integer property to summarize. Must be a property
1060
1060
/// where both the value and summary types are `Int`.
1061
1061
/// - Returns: An `Int` summary value for the specified property.
1062
- public func summary <P : ProgressManager. Property >(of property : P.Type ) -> Int where P.Value == Int , P.Summary == Int
1062
+ public func summary <P : Property >(of property : P.Type ) -> Int where P.Value == Int , P.Summary == Int
1063
1063
1064
1064
/// Returns a summary for a custom unsigned integer property across the progress subtree.
1065
1065
///
@@ -1069,7 +1069,7 @@ extension ProgressManager {
1069
1069
/// - Parameter property: The type of the unsigned integer property to summarize. Must be a property
1070
1070
/// where both the value and summary types are `UInt64`.
1071
1071
/// - Returns: An `UInt64` summary value for the specified property.
1072
- public func summary <P : ProgressManager. Property >(of property : P.Type ) -> UInt64 where P.Value == UInt64 , P.Summary == UInt64
1072
+ public func summary <P : Property >(of property : P.Type ) -> UInt64 where P.Value == UInt64 , P.Summary == UInt64
1073
1073
1074
1074
/// Returns a summary for a custom unsigned integer property across the progress subtree.
1075
1075
///
@@ -1079,7 +1079,7 @@ extension ProgressManager {
1079
1079
/// - Parameter property: The type of the unsigned integer property to summarize. Must be a property
1080
1080
/// where the value type is `UInt64` and the summary type is `[UInt64]`.
1081
1081
/// - Returns: A `[UInt64]` summary value for the specified property.
1082
- public func summary <P : ProgressManager. Property >(of property : P.Type ) -> [UInt64 ] where P.Value == UInt64 , P.Summary == [UInt64 ]
1082
+ public func summary <P : Property >(of property : P.Type ) -> [UInt64 ] where P.Value == UInt64 , P.Summary == [UInt64 ]
1083
1083
1084
1084
/// Returns a summary for a custom duration property across the progress subtree.
1085
1085
///
@@ -1089,7 +1089,7 @@ extension ProgressManager {
1089
1089
/// - Parameter property: The type of the duration property to summarize. Must be a property
1090
1090
/// where both the value and summary types are `Duration`.
1091
1091
/// - Returns: An `Duraton` summary value for the specified property.
1092
- public func summary <P : ProgressManager. Property >(of property : P.Type ) -> Duration where P.Value == Duration, P.Summary == Duration
1092
+ public func summary <P : Property >(of property : P.Type ) -> Duration where P.Value == Duration, P.Summary == Duration
1093
1093
1094
1094
/// Returns a summary for a custom double property across the progress subtree.
1095
1095
///
@@ -1099,7 +1099,7 @@ extension ProgressManager {
1099
1099
/// - Parameter property: The type of the double property to summarize. Must be a property
1100
1100
/// where both the value and summary types are `Double`.
1101
1101
/// - Returns: A `Double` summary value for the specified property.
1102
- public func summary <P : ProgressManager. Property >(of property : P.Type ) -> Double where P.Value == Double , P.Summary == Double
1102
+ public func summary <P : Property >(of property : P.Type ) -> Double where P.Value == Double , P.Summary == Double
1103
1103
1104
1104
/// Returns a summary for a custom string property across the progress subtree.
1105
1105
///
@@ -1109,7 +1109,7 @@ extension ProgressManager {
1109
1109
/// - Parameter property: The type of the string property to summarize. Must be a property
1110
1110
/// where both the value type is `String?` and the summary type is `[String?]`.
1111
1111
/// - Returns: A `[String?]` summary value for the specified property.
1112
- public func summary <P : ProgressManager. Property >(of property : P.Type ) -> [String ? ] where P.Value == String ? , P.Summary == [String ? ]
1112
+ public func summary <P : Property >(of property : P.Type ) -> [String ? ] where P.Value == String ? , P.Summary == [String ? ]
1113
1113
1114
1114
1115
1115
/// Returns a summary for a custom URL property across the progress subtree.
@@ -1120,7 +1120,7 @@ extension ProgressManager {
1120
1120
/// - Parameter property: The type of the URL property to summarize. Must be a property
1121
1121
/// where the value type is `URL?` and the summary type is `[URL?]`.
1122
1122
/// - Returns: A `[URL?]` summary value for the specified property.
1123
- public func summary <P : ProgressManager. Property >(of property : P.Type ) -> [URL? ] where P.Value == URL? , P.Summary == [URL? ]
1123
+ public func summary <P : Property >(of property : P.Type ) -> [URL? ] where P.Value == URL? , P.Summary == [URL? ]
1124
1124
}
1125
1125
```
1126
1126
0 commit comments