Move the core::char module to its own directory
This commit is contained in:
parent
b2027ef17c
commit
3613b0b52f
4 changed files with 5 additions and 4 deletions
|
|
@ -15,7 +15,9 @@
|
|||
#![allow(non_snake_case)]
|
||||
#![stable(feature = "core_char", since = "1.2.0")]
|
||||
|
||||
use char_private::is_printable;
|
||||
mod printable;
|
||||
|
||||
use self::printable::is_printable;
|
||||
use convert::TryFrom;
|
||||
use fmt::{self, Write};
|
||||
use slice;
|
||||
|
|
@ -187,7 +187,7 @@ def main():
|
|||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
// NOTE: The following code was generated by "src/etc/char_private.py",
|
||||
// NOTE: The following code was generated by "src/libcore/char/printable.py",
|
||||
// do not edit directly!
|
||||
|
||||
fn check(x: u16, singletonuppers: &[(u8, u8)], singletonlowers: &[u8],
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
// NOTE: The following code was generated by "src/etc/char_private.py",
|
||||
// NOTE: The following code was generated by "src/libcore/char/printable.py",
|
||||
// do not edit directly!
|
||||
|
||||
fn check(x: u16, singletonuppers: &[(u8, u8)], singletonlowers: &[u8],
|
||||
|
|
@ -187,7 +187,6 @@ pub mod unicode;
|
|||
pub mod heap;
|
||||
|
||||
// note: does not need to be public
|
||||
mod char_private;
|
||||
mod iter_private;
|
||||
mod tuple;
|
||||
mod unit;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue