Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions library/core/src/num/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1073,6 +1073,11 @@ impl u8 {
/// "field splitting" in the Bourne shell][bfs] considers *only*
/// SPACE, HORIZONTAL TAB, and LINE FEED as whitespace.
///
/// Note: The Rust language parser uses a different definition of
/// whitespace, which includes U+000B VERTICAL TAB. The Rust standard
/// library (this function) does **not** include vertical tab, following
/// the WhatWG Infra Standard instead.
///
/// If you are writing a program that will process an existing
/// file format, check what that format's definition of whitespace is
/// before using this function.
Expand Down
Loading