@@ -61,7 +61,8 @@ let ReuseIdentifierUITableViewExtension = Extension(
61
61
functions: [
62
62
Function (
63
63
isStatic: false ,
64
- name: " dequeueReusableCellWithIdentifier<T : \( Type . _UITableViewCell) > " ,
64
+ name: " dequeueReusableCellWithIdentifier " ,
65
+ generics: " T : \( Type . _UITableViewCell) " ,
65
66
parameters: [
66
67
Function . Parameter ( name: " identifier " , type: ReuseIdentifier . type) ,
67
68
Function . Parameter ( name: " forIndexPath " , localName: " indexPath " , type: Type . _NSIndexPath. asOptional ( ) , defaultValue: " nil " )
@@ -72,7 +73,8 @@ let ReuseIdentifierUITableViewExtension = Extension(
72
73
73
74
Function (
74
75
isStatic: false ,
75
- name: " dequeueReusableCellWithIdentifier<T : \( Type . _UITableViewCell) > " ,
76
+ name: " dequeueReusableCellWithIdentifier " ,
77
+ generics: " T : \( Type . _UITableViewCell) " ,
76
78
parameters: [
77
79
Function . Parameter ( name: " identifier " , type: ReuseIdentifier . type) ,
78
80
] ,
@@ -82,7 +84,8 @@ let ReuseIdentifierUITableViewExtension = Extension(
82
84
83
85
Function (
84
86
isStatic: false ,
85
- name: " dequeueReusableHeaderFooterViewWithIdentifier<T : \( Type . _UITableViewHeaderFooterView) > " ,
87
+ name: " dequeueReusableHeaderFooterViewWithIdentifier " ,
88
+ generics: " T : \( Type . _UITableViewHeaderFooterView) " ,
86
89
parameters: [
87
90
Function . Parameter ( name: " identifier " , type: ReuseIdentifier . type) ,
88
91
] ,
@@ -92,7 +95,8 @@ let ReuseIdentifierUITableViewExtension = Extension(
92
95
93
96
Function (
94
97
isStatic: false ,
95
- name: " registerNib<T: \( NibResourceProtocol . type) where T: \( ReusableProtocol . type) , T.T: UITableViewCell> " ,
98
+ name: " registerNib " ,
99
+ generics: " T: \( NibResourceProtocol . type) where T: \( ReusableProtocol . type) , T.T: UITableViewCell " ,
96
100
parameters: [
97
101
Function . Parameter ( name: " nibResource " , type: Type ( name: " T " ) )
98
102
] ,
@@ -102,7 +106,8 @@ let ReuseIdentifierUITableViewExtension = Extension(
102
106
103
107
Function (
104
108
isStatic: false ,
105
- name: " registerNibs<T: \( NibResourceProtocol . type) where T: \( ReusableProtocol . type) , T.T: UITableViewCell> " ,
109
+ name: " registerNibs " ,
110
+ generics: " T: \( NibResourceProtocol . type) where T: \( ReusableProtocol . type) , T.T: UITableViewCell " ,
106
111
parameters: [
107
112
Function . Parameter ( name: " nibResources " , type: Type ( name: " [T] " ) )
108
113
] ,
@@ -112,7 +117,8 @@ let ReuseIdentifierUITableViewExtension = Extension(
112
117
113
118
Function (
114
119
isStatic: false ,
115
- name: " registerNibForHeaderFooterView<T: \( NibResourceProtocol . type) where T: \( ReusableProtocol . type) , T.T: UIView> " ,
120
+ name: " registerNibForHeaderFooterView " ,
121
+ generics: " T: \( NibResourceProtocol . type) where T: \( ReusableProtocol . type) , T.T: UIView " ,
116
122
parameters: [
117
123
Function . Parameter ( name: " nibResource " , type: Type ( name: " T " ) )
118
124
] ,
@@ -127,7 +133,8 @@ let ReuseIdentifierUICollectionViewExtension = Extension(
127
133
functions: [
128
134
Function (
129
135
isStatic: false ,
130
- name: " dequeueReusableCellWithReuseIdentifier<T : \( Type . _UICollectionViewCell) > " ,
136
+ name: " dequeueReusableCellWithReuseIdentifier " ,
137
+ generics: " T: \( Type . _UICollectionViewCell) " ,
131
138
parameters: [
132
139
Function . Parameter ( name: " identifier " , type: ReuseIdentifier . type) ,
133
140
Function . Parameter ( name: " forIndexPath " , localName: " indexPath " , type: Type . _NSIndexPath)
@@ -138,7 +145,8 @@ let ReuseIdentifierUICollectionViewExtension = Extension(
138
145
139
146
Function (
140
147
isStatic: false ,
141
- name: " dequeueReusableSupplementaryViewOfKind<T : \( Type . _UICollectionReusableView) > " ,
148
+ name: " dequeueReusableSupplementaryViewOfKind " ,
149
+ generics: " T: \( Type . _UICollectionReusableView) " ,
142
150
parameters: [
143
151
Function . Parameter ( name: " elementKind " , type: Type . _String) ,
144
152
Function . Parameter ( name: " withReuseIdentifier " , localName: " identifier " , type: ReuseIdentifier . type) ,
@@ -150,7 +158,8 @@ let ReuseIdentifierUICollectionViewExtension = Extension(
150
158
151
159
Function (
152
160
isStatic: false ,
153
- name: " registerNib<T: \( NibResourceProtocol . type) where T: \( ReusableProtocol . type) , T.T: UICollectionViewCell> " ,
161
+ name: " registerNib " ,
162
+ generics: " T: \( NibResourceProtocol . type) where T: \( ReusableProtocol . type) , T.T: UICollectionViewCell " ,
154
163
parameters: [
155
164
Function . Parameter ( name: " nibResource " , type: Type ( name: " T " ) )
156
165
] ,
@@ -160,7 +169,8 @@ let ReuseIdentifierUICollectionViewExtension = Extension(
160
169
161
170
Function (
162
171
isStatic: false ,
163
- name: " registerNibs<T: \( NibResourceProtocol . type) where T: \( ReusableProtocol . type) , T.T: UICollectionViewCell> " ,
172
+ name: " registerNibs " ,
173
+ generics: " T: \( NibResourceProtocol . type) where T: \( ReusableProtocol . type) , T.T: UICollectionViewCell " ,
164
174
parameters: [
165
175
Function . Parameter ( name: " nibResources " , type: Type ( name: " [T] " ) )
166
176
] ,
@@ -170,7 +180,8 @@ let ReuseIdentifierUICollectionViewExtension = Extension(
170
180
171
181
Function (
172
182
isStatic: false ,
173
- name: " registerNib<T: \( NibResourceProtocol . type) where T: \( ReusableProtocol . type) , T.T: UICollectionReusableView> " ,
183
+ name: " registerNib " ,
184
+ generics: " T: \( NibResourceProtocol . type) where T: \( ReusableProtocol . type) , T.T: UICollectionReusableView " ,
174
185
parameters: [
175
186
Function . Parameter ( name: " nibResource " , type: Type ( name: " T " ) ) ,
176
187
Function . Parameter ( name: " forSupplementaryViewOfKind " , localName: " kind " , type: Type . _String)
@@ -181,7 +192,8 @@ let ReuseIdentifierUICollectionViewExtension = Extension(
181
192
182
193
Function (
183
194
isStatic: false ,
184
- name: " registerNibs<T: \( NibResourceProtocol . type) where T: \( ReusableProtocol . type) , T.T: UICollectionReusableView> " ,
195
+ name: " registerNibs " ,
196
+ generics: " T: \( NibResourceProtocol . type) where T: \( ReusableProtocol . type) , T.T: UICollectionReusableView " ,
185
197
parameters: [
186
198
Function . Parameter ( name: " nibResources " , type: Type ( name: " [T] " ) )
187
199
] ,
0 commit comments