@@ -295,7 +295,8 @@ impl char {
295
295
/// assert_eq!(result, None);
296
296
/// ```
297
297
#[ unstable( feature = "unicode" ,
298
- reason = "pending decision about Iterator/Writer/Reader" ) ]
298
+ reason = "pending decision about Iterator/Writer/Reader" ,
299
+ issue = "27784" ) ]
299
300
#[ inline]
300
301
pub fn encode_utf8 ( self , dst : & mut [ u8 ] ) -> Option < usize > {
301
302
C :: encode_utf8 ( self , dst)
@@ -334,7 +335,8 @@ impl char {
334
335
/// assert_eq!(result, None);
335
336
/// ```
336
337
#[ unstable( feature = "unicode" ,
337
- reason = "pending decision about Iterator/Writer/Reader" ) ]
338
+ reason = "pending decision about Iterator/Writer/Reader" ,
339
+ issue = "27784" ) ]
338
340
#[ inline]
339
341
pub fn encode_utf16 ( self , dst : & mut [ u16 ] ) -> Option < usize > {
340
342
C :: encode_utf16 ( self , dst)
@@ -359,7 +361,8 @@ impl char {
359
361
/// [UAX #31](http://unicode.org/reports/tr31/#NFKC_Modifications),
360
362
/// mostly similar to ID_Start but modified for closure under NFKx.
361
363
#[ unstable( feature = "unicode" ,
362
- reason = "mainly needed for compiler internals" ) ]
364
+ reason = "mainly needed for compiler internals" ,
365
+ issue = "0" ) ]
363
366
#[ inline]
364
367
pub fn is_xid_start ( self ) -> bool { derived_property:: XID_Start ( self ) }
365
368
@@ -370,7 +373,8 @@ impl char {
370
373
/// [UAX #31](http://unicode.org/reports/tr31/#NFKC_Modifications),
371
374
/// mostly similar to 'ID_Continue' but modified for closure under NFKx.
372
375
#[ unstable( feature = "unicode" ,
373
- reason = "mainly needed for compiler internals" ) ]
376
+ reason = "mainly needed for compiler internals" ,
377
+ issue = "0" ) ]
374
378
#[ inline]
375
379
pub fn is_xid_continue ( self ) -> bool { derived_property:: XID_Continue ( self ) }
376
380
0 commit comments