22ec5f4af7
The replacements are functions that usually use a single `mem::transmute` in their body and restrict input and output via more concrete types than `T` and `U`. Worth noting are the `transmute` functions for slices and the `from_utf8*` family for mutable slices. Additionally, `mem::transmute` was often used for casting raw pointers, when you can already cast raw pointers just fine with `as`.
63 lines
2.2 KiB
Rust
63 lines
2.2 KiB
Rust
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
|
|
// file at the top-level directory of this distribution and at
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
// option. This file may not be copied, modified, or distributed
|
|
// except according to those terms.
|
|
|
|
//! # The Unicode Library
|
|
//!
|
|
//! Unicode-intensive functions for `char` and `str` types.
|
|
//!
|
|
//! This crate provides a collection of Unicode-related functionality,
|
|
//! including decompositions, conversions, etc., and provides traits
|
|
//! implementing these functions for the `char` and `str` types.
|
|
//!
|
|
//! The functionality included here is only that which is necessary to
|
|
//! provide for basic string-related manipulations. This crate does not
|
|
//! (yet) aim to provide a full set of Unicode tables.
|
|
|
|
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
|
|
#![cfg_attr(stage0, feature(custom_attribute))]
|
|
#![crate_name = "rustc_unicode"]
|
|
#![unstable(feature = "unicode")]
|
|
#![staged_api]
|
|
#![crate_type = "rlib"]
|
|
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
|
|
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
|
|
html_root_url = "http://doc.rust-lang.org/nightly/",
|
|
html_playground_url = "http://play.rust-lang.org/",
|
|
test(no_crate_inject))]
|
|
#![no_std]
|
|
|
|
#![feature(char_from_unchecked)]
|
|
#![feature(core_char_ext)]
|
|
#![feature(core_slice_ext)]
|
|
#![feature(core_str_ext)]
|
|
#![feature(iter_arith)]
|
|
#![feature(lang_items)]
|
|
#![feature(no_std)]
|
|
#![feature(staged_api)]
|
|
#![cfg_attr(stage0, feature(core, core_prelude))]
|
|
|
|
#[cfg(stage0)] extern crate core;
|
|
|
|
mod normalize;
|
|
mod tables;
|
|
mod u_str;
|
|
pub mod char;
|
|
|
|
pub mod str {
|
|
pub use u_str::{UnicodeStr, SplitWhitespace, Words, Graphemes, GraphemeIndices};
|
|
pub use u_str::{utf8_char_width, is_utf16, Utf16Items, Utf16Item};
|
|
pub use u_str::{utf16_items, Utf16Encoder};
|
|
}
|
|
|
|
// For use in libcollections, not re-exported in libstd.
|
|
pub mod derived_property {
|
|
pub use tables::derived_property::{Cased, Case_Ignorable};
|
|
}
|