8000 Remove ignored inline annotations · unicode-rs/unicode-normalization@3e2fe64 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3e2fe64

Browse files
committed
Remove ignored inline annotations
1 parent cb9fb4d commit 3e2fe64

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/lib.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,27 +92,22 @@ pub mod char {
9292
pub trait UnicodeNormalization<I: Iterator<Item=char>> {
9393
/// Returns an iterator over the string in Unicode Normalization Form D
9494
/// (canonical decomposition).
95-
#[inline]
9695
fn nfd(self) -> Decompositions<I>;
9796

9897
/// Returns an iterator over the string in Unicode Normalization Form KD
9998
/// (compatibility decomposition).
100-
#[inline]
10199
fn nfkd(self) -> Decompositions<I>;
102100

103101
/// An Iterator over the string in Unicode Normalization Form C
104102
/// (canonical decomposition followed by canonical composition).
105-
#[inline]
106103
fn nfc(self) -> Recompositions<I>;
107104

108105
/// An Iterator over the string in Unicode Normalization Form KC
109106
/// (compatibility decomposition followed by canonical composition).
110-
#[inline]
111107
fn nfkc(self) -> Recompositions<I>;
112108

113109
/// An Iterator over the string with Conjoining Grapheme Joiner characters
114110
/// inserted according to the Stream-Safe Text Process (UAX15-D4)
115-
#[inline]
116111
fn stream_safe(self) -> StreamSafe<I>;
117112
}
118113

0 commit comments

Comments
 (0)
0