Replace StrExt with inherent str methods in libcore

This commit is contained in:
Simon Sapin 2018-04-07 21:56:02 +02:00
parent 90f29fbdb1
commit f0705bf033
11 changed files with 1766 additions and 1741 deletions

View file

@ -214,6 +214,7 @@ language_item_table! {
StrImplItem, "str", str_impl;
SliceImplItem, "slice", slice_impl;
SliceU8ImplItem, "slice_u8", slice_u8_impl;
StrAllocImplItem, "str_alloc", str_alloc_impl;
SliceAllocImplItem, "slice_alloc", slice_alloc_impl;
SliceU8AllocImplItem, "slice_u8_alloc", slice_u8_alloc_impl;
ConstPtrImplItem, "const_ptr", const_ptr_impl;