@@ -133,22 +133,22 @@ pub trait UnicodeNormalization<I: Iterator<Item = char>> {
133
133
impl < ' a > UnicodeNormalization < Chars < ' a > > for & ' a str {
134
134
#[ inline]
135
135
fn nfd ( self ) -> Decompositions < Chars < ' a > > {
136
- decompose :: new_canonical ( self . chars ( ) )
136
+ Decompositions :: new_canonical ( self . chars ( ) )
137
137
}
138
138
139
139
#[ inline]
140
140
fn nfkd ( self ) -> Decompositions < Chars < ' a > > {
141
- decompose :: new_compatible ( self . chars ( ) )
141
+ Decompositions :: new_compatible ( self . chars ( ) )
142
142
}
143
143
144
144
#[ inline]
145
145
fn nfc ( self ) -> Recompositions < Chars < ' a > > {
146
- recompose :: new_canonical ( self . chars ( ) )
146
+ Recompositions :: new_canonical ( self . chars ( ) )
147
147
}
148
148
149
149
#[ inline]
150
150
fn nfkc ( self ) -> Recompositions < Chars < ' a > > {
151
- recompose :: new_compatible ( self . chars ( ) )
151
+ Recompositions :: new_compatible ( self . chars ( ) )
152
152
}
153
153
154
154
#[ inline]
@@ -165,22 +165,22 @@ impl<'a> UnicodeNormalization<Chars<'a>> for &'a str {
165
165
impl UnicodeNormalization < option:: IntoIter < char > > for char {
166
166
#[ inline]
167
167
fn nfd ( self ) -> Decompositions < option:: IntoIter < char > > {
168
- decompose :: new_canonical ( Some ( self ) . into_iter ( ) )
168
+ Decompositions :: new_canonical ( Some ( self ) . into_iter ( ) )
169
169
}
170
170
171
171
#[ inline]
172
172
fn nfkd ( self ) -> Decompositions < option:: IntoIter < char > > {
173
- decompose :: new_compatible ( Some ( self ) . into_iter ( ) )
173
+ Decompositions :: new_compatible ( Some ( self ) . into_iter ( ) )
174
174
}
175
175
176
176
#[ inline]
177
177
fn nfc ( self ) -> Recompositions < option:: IntoIter < char > > {
178
- recompose :: new_canonical ( Some ( self ) . into_iter ( ) )
178
+ Recompositions :: new_canonical ( Some ( self ) . into_iter ( ) )
179
179
}
180
180
181
181
#[ inline]
182
182
fn nfkc ( self ) -> Recompositions < option:: IntoIter < char > > {
183
- recompose :: new_compatible ( Some ( self ) . into_iter ( ) )
183
+ Recompositions :: new_compatible ( Some ( self ) . into_iter ( ) )
184
184
}
185
185
186
186
#[ inline]
@@ -197,22 +197,22 @@ impl UnicodeNormalization<option::IntoIter<char>> for char {
197
197
impl < I : Iterator < Item = char > > UnicodeNormalization < I > for I {
198
198
#[ inline]
199
199
fn nfd ( self ) -> Decompositions < I > {
200
- decompose :: new_canonical ( self )
200
+ Decompositions :: new_canonical ( self )
201
201
}
202
202
203
203
#[ inline]
204
204
fn nfkd ( self ) -> Decompositions < I > {
205
- decompose :: new_compatible ( self )
205
+ Decompositions :: new_compatible ( self )
206
206
}
207
207
208
208
#[ inline]
209
209
fn nfc ( self ) -> Recompositions < I > {
210
- recompose :: new_canonical ( self )
210
+ Recompositions :: new_canonical ( self )
211
211
}
212
212
213
213
#[ inline]
214
214
fn nfkc ( self ) -> Recompositions < I > {
215
- recompose :: new_compatible ( self )
215
+ Recompositions :: new_compatible ( self )
216
216
}
217
217
218
218
#[ inline]
0 commit comments