[src]

Function std::str::raw::slice_unchecked

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!