Function core::str::raw::slice_uncheckedDeprecated
[-]
[+]
[src]
pub unsafe fn slice_unchecked<'a>(s: &'a str, begin: uint, end: uint) -> &'a str
Takes a bytewise (not UTF-8) slice from a string.
Returns the substring from [begin
..end
).
Caller must check slice boundaries!