File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -92,27 +92,22 @@ pub mod char {
92
92
pub trait UnicodeNormalization < I : Iterator < Item =char > > {
93
93
/// Returns an iterator over the string in Unicode Normalization Form D
94
94
/// (canonical decomposition).
95
- #[ inline]
96
95
fn nfd ( self ) -> Decompositions < I > ;
97
96
98
97
/// Returns an iterator over the string in Unicode Normalization Form KD
99
98
/// (compatibility decomposition).
100
- #[ inline]
101
99
fn nfkd ( self ) -> Decompositions < I > ;
102
100
103
101
/// An Iterator over the string in Unicode Normalization Form C
104
102
/// (canonical decomposition followed by canonical composition).
105
- #[ inline]
106
103
fn nfc ( self ) -> Recompositions < I > ;
107
104
108
105
/// An Iterator over the string in Unicode Normalization Form KC
109
106
/// (compatibility decomposition followed by canonical composition).
110
- #[ inline]
111
107
fn nfkc ( self ) -> Recompositions < I > ;
112
108
113
109
/// An Iterator over the string with Conjoining Grapheme Joiner characters
114
110
/// inserted according to the Stream-Safe Text Process (UAX15-D4)
115
- #[ inline]
116
111
fn stream_safe ( self ) -> StreamSafe < I > ;
117
112
}
118
113
You can’t perform that action at this time.
0 commit comments