mirror of https://github.com/rust-lang/rust.git
Auto merge of #120486 - reitermarkus:use-generic-nonzero, r=dtolnay
Use generic `NonZero` internally. Tracking issue: https://github.com/rust-lang/rust/issues/120257
This commit is contained in:
commit
1be468815c
|
@ -13,7 +13,7 @@ use rustc_session::parse::feature_err;
|
|||
use rustc_session::{RustcVersion, Session};
|
||||
use rustc_span::hygiene::Transparency;
|
||||
use rustc_span::{symbol::sym, symbol::Symbol, Span};
|
||||
use std::num::NonZeroU32;
|
||||
use std::num::NonZero;
|
||||
|
||||
use crate::session_diagnostics::{self, IncorrectReprFormatGenericCause};
|
||||
|
||||
|
@ -113,7 +113,7 @@ pub enum StabilityLevel {
|
|||
/// Reason for the current stability level.
|
||||
reason: UnstableReason,
|
||||
/// Relevant `rust-lang/rust` issue.
|
||||
issue: Option<NonZeroU32>,
|
||||
issue: Option<NonZero<u32>>,
|
||||
is_soft: bool,
|
||||
/// If part of a feature is stabilized and a new feature is added for the remaining parts,
|
||||
/// then the `implied_by` attribute is used to indicate which now-stable feature previously
|
||||
|
@ -442,7 +442,7 @@ fn parse_unstability(sess: &Session, attr: &Attribute) -> Option<(Symbol, Stabil
|
|||
// is a name/value pair string literal.
|
||||
issue_num = match issue.unwrap().as_str() {
|
||||
"none" => None,
|
||||
issue => match issue.parse::<NonZeroU32>() {
|
||||
issue => match issue.parse::<NonZero<u32>>() {
|
||||
Ok(num) => Some(num),
|
||||
Err(err) => {
|
||||
sess.dcx().emit_err(
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
#![allow(internal_features)]
|
||||
#![feature(rustdoc_internals)]
|
||||
#![doc(rust_logo)]
|
||||
#![feature(generic_nonzero)]
|
||||
#![feature(let_chains)]
|
||||
|
||||
#[macro_use]
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
//! to be const-safe.
|
||||
|
||||
use std::fmt::Write;
|
||||
use std::num::NonZeroUsize;
|
||||
use std::num::NonZero;
|
||||
|
||||
use either::{Left, Right};
|
||||
|
||||
|
@ -785,7 +785,7 @@ impl<'rt, 'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> ValueVisitor<'mir, 'tcx, M>
|
|||
fn visit_union(
|
||||
&mut self,
|
||||
op: &OpTy<'tcx, M::Provenance>,
|
||||
_fields: NonZeroUsize,
|
||||
_fields: NonZero<usize>,
|
||||
) -> InterpResult<'tcx> {
|
||||
// Special check for CTFE validation, preventing `UnsafeCell` inside unions in immutable memory.
|
||||
if self.ctfe_mode.is_some_and(|c| !c.allow_immutable_unsafe_cell()) {
|
||||
|
|
|
@ -7,7 +7,7 @@ use rustc_middle::ty;
|
|||
use rustc_target::abi::FieldIdx;
|
||||
use rustc_target::abi::{FieldsShape, VariantIdx, Variants};
|
||||
|
||||
use std::num::NonZeroUsize;
|
||||
use std::num::NonZero;
|
||||
|
||||
use super::{InterpCx, MPlaceTy, Machine, Projectable};
|
||||
|
||||
|
@ -43,7 +43,7 @@ pub trait ValueVisitor<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>>: Sized {
|
|||
}
|
||||
/// Visits the given value as a union. No automatic recursion can happen here.
|
||||
#[inline(always)]
|
||||
fn visit_union(&mut self, _v: &Self::V, _fields: NonZeroUsize) -> InterpResult<'tcx> {
|
||||
fn visit_union(&mut self, _v: &Self::V, _fields: NonZero<usize>) -> InterpResult<'tcx> {
|
||||
Ok(())
|
||||
}
|
||||
/// Visits the given value as the pointer of a `Box`. There is nothing to recurse into.
|
||||
|
|
|
@ -11,6 +11,7 @@ Rust MIR: a lowered representation of Rust.
|
|||
#![feature(assert_matches)]
|
||||
#![feature(box_patterns)]
|
||||
#![feature(decl_macro)]
|
||||
#![feature(generic_nonzero)]
|
||||
#![feature(let_chains)]
|
||||
#![feature(slice_ptr_get)]
|
||||
#![feature(never_type)]
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
#![feature(cfg_match)]
|
||||
#![feature(core_intrinsics)]
|
||||
#![feature(extend_one)]
|
||||
#![feature(generic_nonzero)]
|
||||
#![feature(hash_raw_entry)]
|
||||
#![feature(hasher_prefixfree_extras)]
|
||||
#![feature(lazy_cell)]
|
||||
|
|
|
@ -6,6 +6,7 @@ use std::fmt;
|
|||
use std::hash::{BuildHasher, Hash, Hasher};
|
||||
use std::marker::PhantomData;
|
||||
use std::mem;
|
||||
use std::num::NonZero;
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests;
|
||||
|
@ -338,14 +339,14 @@ impl<CTX, T> HashStable<CTX> for PhantomData<T> {
|
|||
fn hash_stable(&self, _ctx: &mut CTX, _hasher: &mut StableHasher) {}
|
||||
}
|
||||
|
||||
impl<CTX> HashStable<CTX> for ::std::num::NonZeroU32 {
|
||||
impl<CTX> HashStable<CTX> for NonZero<u32> {
|
||||
#[inline]
|
||||
fn hash_stable(&self, ctx: &mut CTX, hasher: &mut StableHasher) {
|
||||
self.get().hash_stable(ctx, hasher)
|
||||
}
|
||||
}
|
||||
|
||||
impl<CTX> HashStable<CTX> for ::std::num::NonZeroUsize {
|
||||
impl<CTX> HashStable<CTX> for NonZero<usize> {
|
||||
#[inline]
|
||||
fn hash_stable(&self, ctx: &mut CTX, hasher: &mut StableHasher) {
|
||||
self.get().hash_stable(ctx, hasher)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
use parking_lot::Mutex;
|
||||
use std::cell::Cell;
|
||||
use std::cell::OnceCell;
|
||||
use std::num::NonZeroUsize;
|
||||
use std::num::NonZero;
|
||||
use std::ops::Deref;
|
||||
use std::ptr;
|
||||
use std::sync::Arc;
|
||||
|
@ -31,7 +31,7 @@ impl RegistryId {
|
|||
}
|
||||
|
||||
struct RegistryData {
|
||||
thread_limit: NonZeroUsize,
|
||||
thread_limit: NonZero<usize>,
|
||||
threads: Mutex<usize>,
|
||||
}
|
||||
|
||||
|
@ -61,7 +61,7 @@ thread_local! {
|
|||
|
||||
impl Registry {
|
||||
/// Creates a registry which can hold up to `thread_limit` threads.
|
||||
pub fn new(thread_limit: NonZeroUsize) -> Self {
|
||||
pub fn new(thread_limit: NonZero<usize>) -> Self {
|
||||
Registry(Arc::new(RegistryData { thread_limit, threads: Mutex::new(0) }))
|
||||
}
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ use std::fmt;
|
|||
use std::hash::{Hash, Hasher};
|
||||
use std::marker::PhantomData;
|
||||
use std::mem::ManuallyDrop;
|
||||
use std::num::NonZeroUsize;
|
||||
use std::num::NonZero;
|
||||
use std::ops::{Deref, DerefMut};
|
||||
use std::ptr::NonNull;
|
||||
|
||||
|
@ -134,7 +134,7 @@ where
|
|||
|
||||
ptr.map_addr(|addr| {
|
||||
// Safety:
|
||||
// - The pointer is `NonNull` => it's address is `NonZeroUsize`
|
||||
// - The pointer is `NonNull` => it's address is `NonZero<usize>`
|
||||
// - `P::BITS` least significant bits are always zero (`Pointer` contract)
|
||||
// - `T::BITS <= P::BITS` (from `Self::ASSERTION`)
|
||||
//
|
||||
|
@ -143,14 +143,14 @@ where
|
|||
// `{non_zero} | packed_tag` can't make the value zero.
|
||||
|
||||
let packed = (addr.get() >> T::BITS) | packed_tag;
|
||||
unsafe { NonZeroUsize::new_unchecked(packed) }
|
||||
unsafe { NonZero::new_unchecked(packed) }
|
||||
})
|
||||
}
|
||||
|
||||
/// Retrieves the original raw pointer from `self.packed`.
|
||||
#[inline]
|
||||
pub(super) fn pointer_raw(&self) -> NonNull<P::Target> {
|
||||
self.packed.map_addr(|addr| unsafe { NonZeroUsize::new_unchecked(addr.get() << T::BITS) })
|
||||
self.packed.map_addr(|addr| unsafe { NonZero::new_unchecked(addr.get() << T::BITS) })
|
||||
}
|
||||
|
||||
/// This provides a reference to the `P` pointer itself, rather than the
|
||||
|
|
|
@ -79,7 +79,7 @@ into_diagnostic_arg_using_display!(
|
|||
ast::ParamKindOrd,
|
||||
std::io::Error,
|
||||
Box<dyn std::error::Error>,
|
||||
std::num::NonZeroU32,
|
||||
std::num::NonZero<u32>,
|
||||
hir::Target,
|
||||
Edition,
|
||||
Ident,
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
#![feature(box_patterns)]
|
||||
#![feature(error_reporter)]
|
||||
#![feature(extract_if)]
|
||||
#![feature(generic_nonzero)]
|
||||
#![feature(let_chains)]
|
||||
#![feature(negative_impls)]
|
||||
#![feature(never_type)]
|
||||
|
@ -77,7 +78,7 @@ use std::error::Report;
|
|||
use std::fmt;
|
||||
use std::hash::Hash;
|
||||
use std::io::Write;
|
||||
use std::num::NonZeroUsize;
|
||||
use std::num::NonZero;
|
||||
use std::ops::DerefMut;
|
||||
use std::panic;
|
||||
use std::path::{Path, PathBuf};
|
||||
|
@ -546,7 +547,7 @@ pub struct DiagCtxtFlags {
|
|||
pub can_emit_warnings: bool,
|
||||
/// If Some, the Nth error-level diagnostic is upgraded to bug-level.
|
||||
/// (rustc: see `-Z treat-err-as-bug`)
|
||||
pub treat_err_as_bug: Option<NonZeroUsize>,
|
||||
pub treat_err_as_bug: Option<NonZero<usize>>,
|
||||
/// Eagerly emit delayed bugs as errors, so that the compiler debugger may
|
||||
/// see all of the errors being emitted at once.
|
||||
pub eagerly_emit_delayed_bugs: bool,
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
//! symbol to the `accepted` or `removed` modules respectively.
|
||||
|
||||
#![allow(internal_features)]
|
||||
#![feature(generic_nonzero)]
|
||||
#![feature(rustdoc_internals)]
|
||||
#![doc(rust_logo)]
|
||||
#![feature(lazy_cell)]
|
||||
|
@ -25,13 +26,13 @@ mod unstable;
|
|||
mod tests;
|
||||
|
||||
use rustc_span::symbol::Symbol;
|
||||
use std::num::NonZeroU32;
|
||||
use std::num::NonZero;
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct Feature {
|
||||
pub name: Symbol,
|
||||
pub since: &'static str,
|
||||
issue: Option<NonZeroU32>,
|
||||
issue: Option<NonZero<u32>>,
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, Debug)]
|
||||
|
@ -85,7 +86,7 @@ impl UnstableFeatures {
|
|||
}
|
||||
}
|
||||
|
||||
fn find_lang_feature_issue(feature: Symbol) -> Option<NonZeroU32> {
|
||||
fn find_lang_feature_issue(feature: Symbol) -> Option<NonZero<u32>> {
|
||||
// Search in all the feature lists.
|
||||
if let Some(f) = UNSTABLE_FEATURES.iter().find(|f| f.feature.name == feature) {
|
||||
return f.feature.issue;
|
||||
|
@ -99,21 +100,21 @@ fn find_lang_feature_issue(feature: Symbol) -> Option<NonZeroU32> {
|
|||
panic!("feature `{feature}` is not declared anywhere");
|
||||
}
|
||||
|
||||
const fn to_nonzero(n: Option<u32>) -> Option<NonZeroU32> {
|
||||
// Can be replaced with `n.and_then(NonZeroU32::new)` if that is ever usable
|
||||
const fn to_nonzero(n: Option<u32>) -> Option<NonZero<u32>> {
|
||||
// Can be replaced with `n.and_then(NonZero::new)` if that is ever usable
|
||||
// in const context. Requires https://github.com/rust-lang/rfcs/pull/2632.
|
||||
match n {
|
||||
None => None,
|
||||
Some(n) => NonZeroU32::new(n),
|
||||
Some(n) => NonZero::new(n),
|
||||
}
|
||||
}
|
||||
|
||||
pub enum GateIssue {
|
||||
Language,
|
||||
Library(Option<NonZeroU32>),
|
||||
Library(Option<NonZero<u32>>),
|
||||
}
|
||||
|
||||
pub fn find_feature_issue(feature: Symbol, issue: GateIssue) -> Option<NonZeroU32> {
|
||||
pub fn find_feature_issue(feature: Symbol, issue: GateIssue) -> Option<NonZero<u32>> {
|
||||
match issue {
|
||||
GateIssue::Language => find_lang_feature_issue(feature),
|
||||
GateIssue::Library(lib) => lib,
|
||||
|
|
|
@ -74,7 +74,7 @@ pub mod wfcheck;
|
|||
|
||||
pub use check::check_abi;
|
||||
|
||||
use std::num::NonZeroU32;
|
||||
use std::num::NonZero;
|
||||
|
||||
use rustc_data_structures::fx::{FxHashSet, FxIndexMap};
|
||||
use rustc_errors::ErrorGuaranteed;
|
||||
|
@ -270,7 +270,7 @@ fn default_body_is_unstable(
|
|||
item_did: DefId,
|
||||
feature: Symbol,
|
||||
reason: Option<Symbol>,
|
||||
issue: Option<NonZeroU32>,
|
||||
issue: Option<NonZero<u32>>,
|
||||
) {
|
||||
let missing_item_name = tcx.associated_item(item_did).name;
|
||||
let (mut some_note, mut none_note, mut reason_str) = (false, false, String::new());
|
||||
|
|
|
@ -63,6 +63,7 @@ This API is completely unstable and subject to change.
|
|||
#![feature(rustdoc_internals)]
|
||||
#![allow(internal_features)]
|
||||
#![feature(control_flow_enum)]
|
||||
#![feature(generic_nonzero)]
|
||||
#![feature(if_let_guard)]
|
||||
#![feature(is_sorted)]
|
||||
#![feature(iter_intersperse)]
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#![feature(decl_macro)]
|
||||
#![feature(error_iter)]
|
||||
#![feature(generic_nonzero)]
|
||||
#![feature(lazy_cell)]
|
||||
#![feature(let_chains)]
|
||||
#![feature(thread_spawn_unchecked)]
|
||||
|
|
|
@ -20,7 +20,7 @@ use rustc_span::{FileName, SourceFileHashAlgorithm};
|
|||
use rustc_target::spec::{CodeModel, LinkerFlavorCli, MergeFunctions, PanicStrategy, RelocModel};
|
||||
use rustc_target::spec::{RelroLevel, SanitizerSet, SplitDebuginfo, StackProtector, TlsModel};
|
||||
use std::collections::{BTreeMap, BTreeSet};
|
||||
use std::num::NonZeroUsize;
|
||||
use std::num::NonZero;
|
||||
use std::path::{Path, PathBuf};
|
||||
use std::sync::Arc;
|
||||
|
||||
|
@ -827,7 +827,7 @@ fn test_unstable_options_tracking_hash() {
|
|||
tracked!(tls_model, Some(TlsModel::GeneralDynamic));
|
||||
tracked!(translate_remapped_path_to_local_path, false);
|
||||
tracked!(trap_unreachable, Some(false));
|
||||
tracked!(treat_err_as_bug, NonZeroUsize::new(1));
|
||||
tracked!(treat_err_as_bug, NonZero::new(1));
|
||||
tracked!(tune_cpu, Some(String::from("abc")));
|
||||
tracked!(uninit_const_chunk_threshold, 123);
|
||||
tracked!(unleash_the_miri_inside_of_you, true);
|
||||
|
|
|
@ -107,7 +107,7 @@ pub(crate) fn run_in_thread_pool_with_globals<F: FnOnce() -> R + Send, R: Send>(
|
|||
use rustc_query_impl::QueryCtxt;
|
||||
use rustc_query_system::query::{deadlock, QueryContext};
|
||||
|
||||
let registry = sync::Registry::new(std::num::NonZeroUsize::new(threads).unwrap());
|
||||
let registry = sync::Registry::new(std::num::NonZero::new(threads).unwrap());
|
||||
|
||||
if !sync::is_dyn_thread_safe() {
|
||||
return run_in_thread_with_globals(edition, || {
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
#![feature(array_windows)]
|
||||
#![feature(box_patterns)]
|
||||
#![feature(control_flow_enum)]
|
||||
#![feature(generic_nonzero)]
|
||||
#![feature(if_let_guard)]
|
||||
#![feature(iter_order_by)]
|
||||
#![feature(let_chains)]
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#![allow(rustc::diagnostic_outside_of_impl)]
|
||||
#![allow(rustc::untranslatable_diagnostic)]
|
||||
|
||||
use std::num::NonZeroU32;
|
||||
use std::num::NonZero;
|
||||
|
||||
use crate::errors::RequestedLevel;
|
||||
use crate::fluent_generated as fluent;
|
||||
|
@ -402,7 +401,7 @@ pub struct BuiltinIncompleteFeaturesHelp;
|
|||
#[derive(Subdiagnostic)]
|
||||
#[note(lint_note)]
|
||||
pub struct BuiltinFeatureIssueNote {
|
||||
pub n: NonZeroU32,
|
||||
pub n: NonZero<u32>,
|
||||
}
|
||||
|
||||
pub struct BuiltinUnpermittedTypeInit<'a> {
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
#![feature(decl_macro)]
|
||||
#![feature(extract_if)]
|
||||
#![feature(coroutines)]
|
||||
#![feature(generic_nonzero)]
|
||||
#![feature(iter_from_coroutine)]
|
||||
#![feature(let_chains)]
|
||||
#![feature(if_let_guard)]
|
||||
|
|
|
@ -327,7 +327,7 @@ impl<'a, 'tcx> DecodeContext<'a, 'tcx> {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn read_lazy_offset_then<T>(&mut self, f: impl Fn(NonZeroUsize) -> T) -> T {
|
||||
fn read_lazy_offset_then<T>(&mut self, f: impl Fn(NonZero<usize>) -> T) -> T {
|
||||
let distance = self.read_usize();
|
||||
let position = match self.lazy_state {
|
||||
LazyState::NoNode => bug!("read_lazy_with_meta: outside of a metadata node"),
|
||||
|
@ -338,7 +338,7 @@ impl<'a, 'tcx> DecodeContext<'a, 'tcx> {
|
|||
}
|
||||
LazyState::Previous(last_pos) => last_pos.get() + distance,
|
||||
};
|
||||
let position = NonZeroUsize::new(position).unwrap();
|
||||
let position = NonZero::new(position).unwrap();
|
||||
self.lazy_state = LazyState::Previous(position);
|
||||
f(position)
|
||||
}
|
||||
|
@ -685,15 +685,15 @@ impl MetadataBlob {
|
|||
}
|
||||
|
||||
pub(crate) fn get_rustc_version(&self) -> String {
|
||||
LazyValue::<String>::from_position(NonZeroUsize::new(METADATA_HEADER.len() + 8).unwrap())
|
||||
LazyValue::<String>::from_position(NonZero::new(METADATA_HEADER.len() + 8).unwrap())
|
||||
.decode(self)
|
||||
}
|
||||
|
||||
fn root_pos(&self) -> NonZeroUsize {
|
||||
fn root_pos(&self) -> NonZero<usize> {
|
||||
let offset = METADATA_HEADER.len();
|
||||
let pos_bytes = self.blob()[offset..][..8].try_into().unwrap();
|
||||
let pos = u64::from_le_bytes(pos_bytes);
|
||||
NonZeroUsize::new(pos as usize).unwrap()
|
||||
NonZero::new(pos as usize).unwrap()
|
||||
}
|
||||
|
||||
pub(crate) fn get_header(&self) -> CrateHeader {
|
||||
|
|
|
@ -421,7 +421,7 @@ macro_rules! record_defaulted_array {
|
|||
}
|
||||
|
||||
impl<'a, 'tcx> EncodeContext<'a, 'tcx> {
|
||||
fn emit_lazy_distance(&mut self, position: NonZeroUsize) {
|
||||
fn emit_lazy_distance(&mut self, position: NonZero<usize>) {
|
||||
let pos = position.get();
|
||||
let distance = match self.lazy_state {
|
||||
LazyState::NoNode => bug!("emit_lazy_distance: outside of a metadata node"),
|
||||
|
@ -439,7 +439,7 @@ impl<'a, 'tcx> EncodeContext<'a, 'tcx> {
|
|||
position.get() - last_pos.get()
|
||||
}
|
||||
};
|
||||
self.lazy_state = LazyState::Previous(NonZeroUsize::new(pos).unwrap());
|
||||
self.lazy_state = LazyState::Previous(NonZero::new(pos).unwrap());
|
||||
self.emit_usize(distance);
|
||||
}
|
||||
|
||||
|
@ -447,7 +447,7 @@ impl<'a, 'tcx> EncodeContext<'a, 'tcx> {
|
|||
where
|
||||
T::Value<'tcx>: Encodable<EncodeContext<'a, 'tcx>>,
|
||||
{
|
||||
let pos = NonZeroUsize::new(self.position()).unwrap();
|
||||
let pos = NonZero::new(self.position()).unwrap();
|
||||
|
||||
assert_eq!(self.lazy_state, LazyState::NoNode);
|
||||
self.lazy_state = LazyState::NodeStart(pos);
|
||||
|
@ -466,7 +466,7 @@ impl<'a, 'tcx> EncodeContext<'a, 'tcx> {
|
|||
where
|
||||
T::Value<'tcx>: Encodable<EncodeContext<'a, 'tcx>>,
|
||||
{
|
||||
let pos = NonZeroUsize::new(self.position()).unwrap();
|
||||
let pos = NonZero::new(self.position()).unwrap();
|
||||
|
||||
assert_eq!(self.lazy_state, LazyState::NoNode);
|
||||
self.lazy_state = LazyState::NodeStart(pos);
|
||||
|
|
|
@ -37,7 +37,7 @@ use rustc_target::abi::{FieldIdx, VariantIdx};
|
|||
use rustc_target::spec::{PanicStrategy, TargetTriple};
|
||||
|
||||
use std::marker::PhantomData;
|
||||
use std::num::NonZeroUsize;
|
||||
use std::num::NonZero;
|
||||
|
||||
use decoder::DecodeContext;
|
||||
pub(crate) use decoder::{CrateMetadata, CrateNumMap, MetadataBlob};
|
||||
|
@ -83,7 +83,7 @@ pub const METADATA_HEADER: &[u8] = &[b'r', b'u', b's', b't', 0, 0, 0, METADATA_V
|
|||
/// order than they were encoded in.
|
||||
#[must_use]
|
||||
struct LazyValue<T> {
|
||||
position: NonZeroUsize,
|
||||
position: NonZero<usize>,
|
||||
_marker: PhantomData<fn() -> T>,
|
||||
}
|
||||
|
||||
|
@ -92,7 +92,7 @@ impl<T: ParameterizedOverTcx> ParameterizedOverTcx for LazyValue<T> {
|
|||
}
|
||||
|
||||
impl<T> LazyValue<T> {
|
||||
fn from_position(position: NonZeroUsize) -> LazyValue<T> {
|
||||
fn from_position(position: NonZero<usize>) -> LazyValue<T> {
|
||||
LazyValue { position, _marker: PhantomData }
|
||||
}
|
||||
}
|
||||
|
@ -108,7 +108,7 @@ impl<T> LazyValue<T> {
|
|||
/// the minimal distance the length of the sequence, i.e.
|
||||
/// it's assumed there's no 0-byte element in the sequence.
|
||||
struct LazyArray<T> {
|
||||
position: NonZeroUsize,
|
||||
position: NonZero<usize>,
|
||||
num_elems: usize,
|
||||
_marker: PhantomData<fn() -> T>,
|
||||
}
|
||||
|
@ -119,12 +119,12 @@ impl<T: ParameterizedOverTcx> ParameterizedOverTcx for LazyArray<T> {
|
|||
|
||||
impl<T> Default for LazyArray<T> {
|
||||
fn default() -> LazyArray<T> {
|
||||
LazyArray::from_position_and_num_elems(NonZeroUsize::new(1).unwrap(), 0)
|
||||
LazyArray::from_position_and_num_elems(NonZero::new(1).unwrap(), 0)
|
||||
}
|
||||
}
|
||||
|
||||
impl<T> LazyArray<T> {
|
||||
fn from_position_and_num_elems(position: NonZeroUsize, num_elems: usize) -> LazyArray<T> {
|
||||
fn from_position_and_num_elems(position: NonZero<usize>, num_elems: usize) -> LazyArray<T> {
|
||||
LazyArray { position, num_elems, _marker: PhantomData }
|
||||
}
|
||||
}
|
||||
|
@ -135,7 +135,7 @@ impl<T> LazyArray<T> {
|
|||
/// `LazyArray<T>`, but without requiring encoding or decoding all the values
|
||||
/// eagerly and in-order.
|
||||
struct LazyTable<I, T> {
|
||||
position: NonZeroUsize,
|
||||
position: NonZero<usize>,
|
||||
/// The encoded size of the elements of a table is selected at runtime to drop
|
||||
/// trailing zeroes. This is the number of bytes used for each table element.
|
||||
width: usize,
|
||||
|
@ -150,7 +150,7 @@ impl<I: 'static, T: ParameterizedOverTcx> ParameterizedOverTcx for LazyTable<I,
|
|||
|
||||
impl<I, T> LazyTable<I, T> {
|
||||
fn from_position_and_encoded_size(
|
||||
position: NonZeroUsize,
|
||||
position: NonZero<usize>,
|
||||
width: usize,
|
||||
len: usize,
|
||||
) -> LazyTable<I, T> {
|
||||
|
@ -187,11 +187,11 @@ enum LazyState {
|
|||
|
||||
/// Inside a metadata node, and before any `Lazy`s.
|
||||
/// The position is that of the node itself.
|
||||
NodeStart(NonZeroUsize),
|
||||
NodeStart(NonZero<usize>),
|
||||
|
||||
/// Inside a metadata node, with a previous `Lazy`s.
|
||||
/// The position is where that previous `Lazy` would start.
|
||||
Previous(NonZeroUsize),
|
||||
Previous(NonZero<usize>),
|
||||
}
|
||||
|
||||
type SyntaxContextTable = LazyTable<u32, Option<LazyValue<SyntaxContextData>>>;
|
||||
|
|
|
@ -339,7 +339,7 @@ impl<T> FixedSizeEncoding for Option<LazyValue<T>> {
|
|||
|
||||
#[inline]
|
||||
fn from_bytes(b: &[u8; 8]) -> Self {
|
||||
let position = NonZeroUsize::new(u64::from_bytes(b) as usize)?;
|
||||
let position = NonZero::new(u64::from_bytes(b) as usize)?;
|
||||
Some(LazyValue::from_position(position))
|
||||
}
|
||||
|
||||
|
@ -366,7 +366,7 @@ impl<T> LazyArray<T> {
|
|||
}
|
||||
|
||||
fn from_bytes_impl(position: &[u8; 8], meta: &[u8; 8]) -> Option<LazyArray<T>> {
|
||||
let position = NonZeroUsize::new(u64::from_bytes(position) as usize)?;
|
||||
let position = NonZero::new(u64::from_bytes(position) as usize)?;
|
||||
let len = u64::from_bytes(meta) as usize;
|
||||
Some(LazyArray::from_position_and_num_elems(position, len))
|
||||
}
|
||||
|
@ -497,7 +497,7 @@ impl<I: Idx, const N: usize, T: FixedSizeEncoding<ByteArray = [u8; N]>> TableBui
|
|||
}
|
||||
|
||||
LazyTable::from_position_and_encoded_size(
|
||||
NonZeroUsize::new(pos).unwrap(),
|
||||
NonZero::new(pos).unwrap(),
|
||||
width,
|
||||
self.blocks.len(),
|
||||
)
|
||||
|
|
|
@ -34,6 +34,7 @@
|
|||
#![feature(discriminant_kind)]
|
||||
#![feature(exhaustive_patterns)]
|
||||
#![feature(coroutines)]
|
||||
#![feature(generic_nonzero)]
|
||||
#![feature(if_let_guard)]
|
||||
#![feature(inline_const)]
|
||||
#![feature(iter_from_coroutine)]
|
||||
|
|
|
@ -21,7 +21,7 @@ use rustc_session::parse::feature_err_issue;
|
|||
use rustc_session::Session;
|
||||
use rustc_span::symbol::{sym, Symbol};
|
||||
use rustc_span::Span;
|
||||
use std::num::NonZeroU32;
|
||||
use std::num::NonZero;
|
||||
|
||||
#[derive(PartialEq, Clone, Copy, Debug)]
|
||||
pub enum StabilityLevel {
|
||||
|
@ -102,7 +102,7 @@ pub fn report_unstable(
|
|||
sess: &Session,
|
||||
feature: Symbol,
|
||||
reason: Option<Symbol>,
|
||||
issue: Option<NonZeroU32>,
|
||||
issue: Option<NonZero<u32>>,
|
||||
suggestion: Option<(Span, String, String, Applicability)>,
|
||||
is_soft: bool,
|
||||
span: Span,
|
||||
|
@ -235,7 +235,7 @@ pub enum EvalResult {
|
|||
Deny {
|
||||
feature: Symbol,
|
||||
reason: Option<Symbol>,
|
||||
issue: Option<NonZeroU32>,
|
||||
issue: Option<NonZero<u32>>,
|
||||
suggestion: Option<(Span, String, String, Applicability)>,
|
||||
is_soft: bool,
|
||||
},
|
||||
|
@ -433,7 +433,7 @@ impl<'tcx> TyCtxt<'tcx> {
|
|||
// the `-Z force-unstable-if-unmarked` flag present (we're
|
||||
// compiling a compiler crate), then let this missing feature
|
||||
// annotation slide.
|
||||
if feature == sym::rustc_private && issue == NonZeroU32::new(27812) {
|
||||
if feature == sym::rustc_private && issue == NonZero::new(27812) {
|
||||
if self.sess.opts.unstable_opts.force_unstable_if_unmarked {
|
||||
return EvalResult::Allow;
|
||||
}
|
||||
|
|
|
@ -122,7 +122,7 @@ mod value;
|
|||
use std::fmt;
|
||||
use std::io;
|
||||
use std::io::{Read, Write};
|
||||
use std::num::{NonZeroU32, NonZeroU64};
|
||||
use std::num::NonZero;
|
||||
use std::sync::atomic::{AtomicU32, Ordering};
|
||||
|
||||
use rustc_ast::LitKind;
|
||||
|
@ -206,7 +206,7 @@ pub enum LitToConstError {
|
|||
}
|
||||
|
||||
#[derive(Copy, Clone, Eq, Hash, Ord, PartialEq, PartialOrd)]
|
||||
pub struct AllocId(pub NonZeroU64);
|
||||
pub struct AllocId(pub NonZero<u64>);
|
||||
|
||||
// We want the `Debug` output to be readable as it is used by `derive(Debug)` for
|
||||
// all the Miri types.
|
||||
|
@ -261,7 +261,7 @@ pub fn specialized_encode_alloc_id<'tcx, E: TyEncoder<I = TyCtxt<'tcx>>>(
|
|||
}
|
||||
|
||||
// Used to avoid infinite recursion when decoding cyclic allocations.
|
||||
type DecodingSessionId = NonZeroU32;
|
||||
type DecodingSessionId = NonZero<u32>;
|
||||
|
||||
#[derive(Clone)]
|
||||
enum State {
|
||||
|
@ -501,7 +501,7 @@ impl<'tcx> AllocMap<'tcx> {
|
|||
AllocMap {
|
||||
alloc_map: Default::default(),
|
||||
dedup: Default::default(),
|
||||
next_id: AllocId(NonZeroU64::new(1).unwrap()),
|
||||
next_id: AllocId(NonZero::new(1).unwrap()),
|
||||
}
|
||||
}
|
||||
fn reserve(&mut self) -> AllocId {
|
||||
|
|
|
@ -3,7 +3,7 @@ use super::{AllocId, InterpResult};
|
|||
use rustc_macros::HashStable;
|
||||
use rustc_target::abi::{HasDataLayout, Size};
|
||||
|
||||
use std::{fmt, num::NonZeroU64};
|
||||
use std::{fmt, num::NonZero};
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// Pointer arithmetic
|
||||
|
@ -129,7 +129,7 @@ pub trait Provenance: Copy + fmt::Debug + 'static {
|
|||
/// The type of provenance in the compile-time interpreter.
|
||||
/// This is a packed representation of an `AllocId` and an `immutable: bool`.
|
||||
#[derive(Copy, Clone, Eq, Hash, Ord, PartialEq, PartialOrd)]
|
||||
pub struct CtfeProvenance(NonZeroU64);
|
||||
pub struct CtfeProvenance(NonZero<u64>);
|
||||
|
||||
impl From<AllocId> for CtfeProvenance {
|
||||
fn from(value: AllocId) -> Self {
|
||||
|
@ -155,7 +155,7 @@ impl CtfeProvenance {
|
|||
/// Returns the `AllocId` of this provenance.
|
||||
#[inline(always)]
|
||||
pub fn alloc_id(self) -> AllocId {
|
||||
AllocId(NonZeroU64::new(self.0.get() & !IMMUTABLE_MASK).unwrap())
|
||||
AllocId(NonZero::new(self.0.get() & !IMMUTABLE_MASK).unwrap())
|
||||
}
|
||||
|
||||
/// Returns whether this provenance is immutable.
|
||||
|
|
|
@ -4,7 +4,7 @@ use rustc_errors::{DiagnosticArgValue, IntoDiagnosticArg};
|
|||
use rustc_serialize::{Decodable, Decoder, Encodable, Encoder};
|
||||
use rustc_target::abi::Size;
|
||||
use std::fmt;
|
||||
use std::num::NonZeroU8;
|
||||
use std::num::NonZero;
|
||||
|
||||
use crate::ty::TyCtxt;
|
||||
|
||||
|
@ -132,7 +132,7 @@ pub struct ScalarInt {
|
|||
/// The first `size` bytes of `data` are the value.
|
||||
/// Do not try to read less or more bytes than that. The remaining bytes must be 0.
|
||||
data: u128,
|
||||
size: NonZeroU8,
|
||||
size: NonZero<u8>,
|
||||
}
|
||||
|
||||
// Cannot derive these, as the derives take references to the fields, and we
|
||||
|
@ -161,14 +161,14 @@ impl<D: Decoder> Decodable<D> for ScalarInt {
|
|||
let mut data = [0u8; 16];
|
||||
let size = d.read_u8();
|
||||
data[..size as usize].copy_from_slice(d.read_raw_bytes(size as usize));
|
||||
ScalarInt { data: u128::from_le_bytes(data), size: NonZeroU8::new(size).unwrap() }
|
||||
ScalarInt { data: u128::from_le_bytes(data), size: NonZero::new(size).unwrap() }
|
||||
}
|
||||
}
|
||||
|
||||
impl ScalarInt {
|
||||
pub const TRUE: ScalarInt = ScalarInt { data: 1_u128, size: NonZeroU8::new(1).unwrap() };
|
||||
pub const TRUE: ScalarInt = ScalarInt { data: 1_u128, size: NonZero::new(1).unwrap() };
|
||||
|
||||
pub const FALSE: ScalarInt = ScalarInt { data: 0_u128, size: NonZeroU8::new(1).unwrap() };
|
||||
pub const FALSE: ScalarInt = ScalarInt { data: 0_u128, size: NonZero::new(1).unwrap() };
|
||||
|
||||
#[inline]
|
||||
pub fn size(self) -> Size {
|
||||
|
@ -196,7 +196,7 @@ impl ScalarInt {
|
|||
|
||||
#[inline]
|
||||
pub fn null(size: Size) -> Self {
|
||||
Self { data: 0, size: NonZeroU8::new(size.bytes() as u8).unwrap() }
|
||||
Self { data: 0, size: NonZero::new(size.bytes() as u8).unwrap() }
|
||||
}
|
||||
|
||||
#[inline]
|
||||
|
@ -208,7 +208,7 @@ impl ScalarInt {
|
|||
pub fn try_from_uint(i: impl Into<u128>, size: Size) -> Option<Self> {
|
||||
let data = i.into();
|
||||
if size.truncate(data) == data {
|
||||
Some(Self { data, size: NonZeroU8::new(size.bytes() as u8).unwrap() })
|
||||
Some(Self { data, size: NonZero::new(size.bytes() as u8).unwrap() })
|
||||
} else {
|
||||
None
|
||||
}
|
||||
|
@ -220,7 +220,7 @@ impl ScalarInt {
|
|||
// `into` performed sign extension, we have to truncate
|
||||
let truncated = size.truncate(i as u128);
|
||||
if size.sign_extend(truncated) as i128 == i {
|
||||
Some(Self { data: truncated, size: NonZeroU8::new(size.bytes() as u8).unwrap() })
|
||||
Some(Self { data: truncated, size: NonZero::new(size.bytes() as u8).unwrap() })
|
||||
} else {
|
||||
None
|
||||
}
|
||||
|
@ -388,7 +388,7 @@ macro_rules! from {
|
|||
fn from(u: $ty) -> Self {
|
||||
Self {
|
||||
data: u128::from(u),
|
||||
size: NonZeroU8::new(std::mem::size_of::<$ty>() as u8).unwrap(),
|
||||
size: NonZero::new(std::mem::size_of::<$ty>() as u8).unwrap(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -427,7 +427,7 @@ impl TryFrom<ScalarInt> for bool {
|
|||
impl From<char> for ScalarInt {
|
||||
#[inline]
|
||||
fn from(c: char) -> Self {
|
||||
Self { data: c as u128, size: NonZeroU8::new(std::mem::size_of::<char>() as u8).unwrap() }
|
||||
Self { data: c as u128, size: NonZero::new(std::mem::size_of::<char>() as u8).unwrap() }
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -454,7 +454,7 @@ impl From<Single> for ScalarInt {
|
|||
#[inline]
|
||||
fn from(f: Single) -> Self {
|
||||
// We trust apfloat to give us properly truncated data.
|
||||
Self { data: f.to_bits(), size: NonZeroU8::new((Single::BITS / 8) as u8).unwrap() }
|
||||
Self { data: f.to_bits(), size: NonZero::new((Single::BITS / 8) as u8).unwrap() }
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -470,7 +470,7 @@ impl From<Double> for ScalarInt {
|
|||
#[inline]
|
||||
fn from(f: Double) -> Self {
|
||||
// We trust apfloat to give us properly truncated data.
|
||||
Self { data: f.to_bits(), size: NonZeroU8::new((Double::BITS / 8) as u8).unwrap() }
|
||||
Self { data: f.to_bits(), size: NonZero::new((Double::BITS / 8) as u8).unwrap() }
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ use core::intrinsics;
|
|||
use std::cmp::Ordering;
|
||||
use std::marker::PhantomData;
|
||||
use std::mem;
|
||||
use std::num::NonZeroUsize;
|
||||
use std::num::NonZero;
|
||||
use std::ops::{ControlFlow, Deref};
|
||||
use std::ptr::NonNull;
|
||||
|
||||
|
@ -143,9 +143,8 @@ impl<'tcx> From<ty::Term<'tcx>> for GenericArg<'tcx> {
|
|||
impl<'tcx> GenericArg<'tcx> {
|
||||
#[inline]
|
||||
pub fn unpack(self) -> GenericArgKind<'tcx> {
|
||||
let ptr = unsafe {
|
||||
self.ptr.map_addr(|addr| NonZeroUsize::new_unchecked(addr.get() & !TAG_MASK))
|
||||
};
|
||||
let ptr =
|
||||
unsafe { self.ptr.map_addr(|addr| NonZero::new_unchecked(addr.get() & !TAG_MASK)) };
|
||||
// SAFETY: use of `Interned::new_unchecked` here is ok because these
|
||||
// pointers were originally created from `Interned` types in `pack()`,
|
||||
// and this is just going in the other direction.
|
||||
|
|
|
@ -20,7 +20,7 @@ use rustc_target::spec::{abi::Abi as SpecAbi, HasTargetSpec, PanicStrategy, Targ
|
|||
|
||||
use std::cmp;
|
||||
use std::fmt;
|
||||
use std::num::NonZeroUsize;
|
||||
use std::num::NonZero;
|
||||
use std::ops::Bound;
|
||||
|
||||
pub trait IntegerExt {
|
||||
|
@ -761,7 +761,7 @@ where
|
|||
};
|
||||
tcx.mk_layout(LayoutS {
|
||||
variants: Variants::Single { index: variant_index },
|
||||
fields: match NonZeroUsize::new(fields) {
|
||||
fields: match NonZero::new(fields) {
|
||||
Some(fields) => FieldsShape::Union(fields),
|
||||
None => FieldsShape::Arbitrary { offsets: IndexVec::new(), memory_index: IndexVec::new() },
|
||||
},
|
||||
|
|
|
@ -61,7 +61,7 @@ use std::fmt::Debug;
|
|||
use std::hash::{Hash, Hasher};
|
||||
use std::marker::PhantomData;
|
||||
use std::mem;
|
||||
use std::num::NonZeroUsize;
|
||||
use std::num::NonZero;
|
||||
use std::ops::ControlFlow;
|
||||
use std::ptr::NonNull;
|
||||
use std::{fmt, str};
|
||||
|
@ -617,9 +617,8 @@ impl<'tcx, D: TyDecoder<I = TyCtxt<'tcx>>> Decodable<D> for Term<'tcx> {
|
|||
impl<'tcx> Term<'tcx> {
|
||||
#[inline]
|
||||
pub fn unpack(self) -> TermKind<'tcx> {
|
||||
let ptr = unsafe {
|
||||
self.ptr.map_addr(|addr| NonZeroUsize::new_unchecked(addr.get() & !TAG_MASK))
|
||||
};
|
||||
let ptr =
|
||||
unsafe { self.ptr.map_addr(|addr| NonZero::new_unchecked(addr.get() & !TAG_MASK)) };
|
||||
// SAFETY: use of `Interned::new_unchecked` here is ok because these
|
||||
// pointers were originally created from `Interned` types in `pack()`,
|
||||
// and this is just going in the other direction.
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
#![doc(rust_logo)]
|
||||
#![feature(rustdoc_internals)]
|
||||
#![allow(internal_features)]
|
||||
#![feature(generic_nonzero)]
|
||||
#![feature(let_chains)]
|
||||
#![feature(map_try_insert)]
|
||||
#![feature(try_blocks)]
|
||||
|
|
|
@ -27,7 +27,7 @@ use rustc_span::Span;
|
|||
use rustc_target::spec::abi::Abi;
|
||||
|
||||
use std::mem::replace;
|
||||
use std::num::NonZeroU32;
|
||||
use std::num::NonZero;
|
||||
|
||||
#[derive(PartialEq)]
|
||||
enum AnnotationKind {
|
||||
|
@ -645,7 +645,7 @@ fn stability_index(tcx: TyCtxt<'_>, (): ()) -> Index {
|
|||
let stability = Stability {
|
||||
level: attr::StabilityLevel::Unstable {
|
||||
reason: UnstableReason::Default,
|
||||
issue: NonZeroU32::new(27812),
|
||||
issue: NonZero::new(27812),
|
||||
is_soft: false,
|
||||
implied_by: None,
|
||||
},
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
|
||||
#![doc(rust_logo)]
|
||||
#![feature(rustdoc_internals)]
|
||||
#![feature(generic_nonzero)]
|
||||
#![feature(min_specialization)]
|
||||
#![feature(rustc_attrs)]
|
||||
#![allow(rustc::potential_query_instability, unused_parens)]
|
||||
|
|
|
@ -30,7 +30,7 @@ use rustc_serialize::Decodable;
|
|||
use rustc_serialize::Encodable;
|
||||
use rustc_session::Limit;
|
||||
use rustc_span::def_id::LOCAL_CRATE;
|
||||
use std::num::NonZeroU64;
|
||||
use std::num::NonZero;
|
||||
use thin_vec::ThinVec;
|
||||
|
||||
#[derive(Copy, Clone)]
|
||||
|
@ -68,10 +68,8 @@ impl QueryContext for QueryCtxt<'_> {
|
|||
#[inline]
|
||||
fn next_job_id(self) -> QueryJobId {
|
||||
QueryJobId(
|
||||
NonZeroU64::new(
|
||||
self.query_system.jobs.fetch_add(1, std::sync::atomic::Ordering::Relaxed),
|
||||
)
|
||||
.unwrap(),
|
||||
NonZero::new(self.query_system.jobs.fetch_add(1, std::sync::atomic::Ordering::Relaxed))
|
||||
.unwrap(),
|
||||
)
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#![feature(assert_matches)]
|
||||
#![feature(core_intrinsics)]
|
||||
#![feature(generic_nonzero)]
|
||||
#![feature(hash_raw_entry)]
|
||||
#![feature(min_specialization)]
|
||||
#![feature(let_chains)]
|
||||
|
|
|
@ -11,7 +11,7 @@ use rustc_span::Span;
|
|||
|
||||
use std::hash::Hash;
|
||||
use std::io::Write;
|
||||
use std::num::NonZeroU64;
|
||||
use std::num::NonZero;
|
||||
|
||||
#[cfg(parallel_compiler)]
|
||||
use {
|
||||
|
@ -36,7 +36,7 @@ pub type QueryMap = FxHashMap<QueryJobId, QueryJobInfo>;
|
|||
|
||||
/// A value uniquely identifying an active query job.
|
||||
#[derive(Copy, Clone, Eq, PartialEq, Hash, Debug)]
|
||||
pub struct QueryJobId(pub NonZeroU64);
|
||||
pub struct QueryJobId(pub NonZero<u64>);
|
||||
|
||||
impl QueryJobId {
|
||||
fn query(self, map: &QueryMap) -> QueryStackFrame {
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
#![feature(associated_type_bounds)]
|
||||
#![feature(const_option)]
|
||||
#![feature(core_intrinsics)]
|
||||
#![feature(generic_nonzero)]
|
||||
#![feature(inline_const)]
|
||||
#![feature(min_specialization)]
|
||||
#![feature(never_type)]
|
||||
|
|
|
@ -6,6 +6,7 @@ use std::cell::{Cell, RefCell};
|
|||
use std::collections::{BTreeMap, BTreeSet, HashMap, HashSet, VecDeque};
|
||||
use std::hash::{BuildHasher, Hash};
|
||||
use std::marker::PhantomData;
|
||||
use std::num::NonZero;
|
||||
use std::path;
|
||||
use std::rc::Rc;
|
||||
use std::sync::Arc;
|
||||
|
@ -216,15 +217,15 @@ impl<D: Decoder> Decodable<D> for ! {
|
|||
}
|
||||
}
|
||||
|
||||
impl<S: Encoder> Encodable<S> for ::std::num::NonZeroU32 {
|
||||
impl<S: Encoder> Encodable<S> for NonZero<u32> {
|
||||
fn encode(&self, s: &mut S) {
|
||||
s.emit_u32(self.get());
|
||||
}
|
||||
}
|
||||
|
||||
impl<D: Decoder> Decodable<D> for ::std::num::NonZeroU32 {
|
||||
impl<D: Decoder> Decodable<D> for NonZero<u32> {
|
||||
fn decode(d: &mut D) -> Self {
|
||||
::std::num::NonZeroU32::new(d.read_u32()).unwrap()
|
||||
NonZero::new(d.read_u32()).unwrap()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -3226,7 +3226,7 @@ pub(crate) mod dep_tracking {
|
|||
};
|
||||
use std::collections::BTreeMap;
|
||||
use std::hash::{DefaultHasher, Hash};
|
||||
use std::num::NonZeroUsize;
|
||||
use std::num::NonZero;
|
||||
use std::path::PathBuf;
|
||||
|
||||
pub trait DepTrackingHash {
|
||||
|
@ -3268,7 +3268,7 @@ pub(crate) mod dep_tracking {
|
|||
impl_dep_tracking_hash_via_hash!(
|
||||
bool,
|
||||
usize,
|
||||
NonZeroUsize,
|
||||
NonZero<usize>,
|
||||
u64,
|
||||
Hash64,
|
||||
String,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use std::num::NonZeroU32;
|
||||
use std::num::NonZero;
|
||||
|
||||
use rustc_ast::token;
|
||||
use rustc_ast::util::literal::LitError;
|
||||
|
@ -27,7 +27,7 @@ impl<'a> IntoDiagnostic<'a> for FeatureGateError {
|
|||
#[derive(Subdiagnostic)]
|
||||
#[note(session_feature_diagnostic_for_issue)]
|
||||
pub struct FeatureDiagnosticForIssue {
|
||||
pub n: NonZeroU32,
|
||||
pub n: NonZero<u32>,
|
||||
}
|
||||
|
||||
#[derive(Subdiagnostic)]
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#![feature(generic_nonzero)]
|
||||
#![feature(let_chains)]
|
||||
#![feature(lazy_cell)]
|
||||
#![feature(option_get_or_insert_default)]
|
||||
|
|
|
@ -21,7 +21,7 @@ use rustc_span::SourceFileHashAlgorithm;
|
|||
use std::collections::BTreeMap;
|
||||
|
||||
use std::hash::{DefaultHasher, Hasher};
|
||||
use std::num::{IntErrorKind, NonZeroUsize};
|
||||
use std::num::{IntErrorKind, NonZero};
|
||||
use std::path::PathBuf;
|
||||
use std::str;
|
||||
|
||||
|
@ -617,7 +617,7 @@ mod parse {
|
|||
pub(crate) fn parse_threads(slot: &mut usize, v: Option<&str>) -> bool {
|
||||
match v.and_then(|s| s.parse().ok()) {
|
||||
Some(0) => {
|
||||
*slot = std::thread::available_parallelism().map_or(1, std::num::NonZeroUsize::get);
|
||||
*slot = std::thread::available_parallelism().map_or(1, NonZero::<usize>::get);
|
||||
true
|
||||
}
|
||||
Some(i) => {
|
||||
|
@ -991,7 +991,10 @@ mod parse {
|
|||
true
|
||||
}
|
||||
|
||||
pub(crate) fn parse_treat_err_as_bug(slot: &mut Option<NonZeroUsize>, v: Option<&str>) -> bool {
|
||||
pub(crate) fn parse_treat_err_as_bug(
|
||||
slot: &mut Option<NonZero<usize>>,
|
||||
v: Option<&str>,
|
||||
) -> bool {
|
||||
match v {
|
||||
Some(s) => match s.parse() {
|
||||
Ok(val) => {
|
||||
|
@ -1004,7 +1007,7 @@ mod parse {
|
|||
}
|
||||
},
|
||||
None => {
|
||||
*slot = NonZeroUsize::new(1);
|
||||
*slot = NonZero::new(1);
|
||||
true
|
||||
}
|
||||
}
|
||||
|
@ -1950,7 +1953,7 @@ written to standard error output)"),
|
|||
"translate remapped paths into local paths when possible (default: yes)"),
|
||||
trap_unreachable: Option<bool> = (None, parse_opt_bool, [TRACKED],
|
||||
"generate trap instructions for unreachable intrinsics (default: use target setting, usually yes)"),
|
||||
treat_err_as_bug: Option<NonZeroUsize> = (None, parse_treat_err_as_bug, [TRACKED],
|
||||
treat_err_as_bug: Option<NonZero<usize>> = (None, parse_treat_err_as_bug, [TRACKED],
|
||||
"treat the `val`th error that occurs as bug (default if not specified: 0 - don't treat errors as bugs. \
|
||||
default if specified without a value: 1 - treat the first error as bug)"),
|
||||
trim_diagnostic_paths: bool = (true, parse_bool, [UNTRACKED],
|
||||
|
|
|
@ -147,7 +147,7 @@ use core::alloc::Allocator;
|
|||
use core::fmt;
|
||||
use core::iter::{FusedIterator, InPlaceIterable, SourceIter, TrustedFused, TrustedLen};
|
||||
use core::mem::{self, swap, ManuallyDrop};
|
||||
use core::num::NonZeroUsize;
|
||||
use core::num::NonZero;
|
||||
use core::ops::{Deref, DerefMut};
|
||||
use core::ptr;
|
||||
|
||||
|
@ -296,7 +296,7 @@ pub struct PeekMut<
|
|||
heap: &'a mut BinaryHeap<T, A>,
|
||||
// If a set_len + sift_down are required, this is Some. If a &mut T has not
|
||||
// yet been exposed to peek_mut()'s caller, it's None.
|
||||
original_len: Option<NonZeroUsize>,
|
||||
original_len: Option<NonZero<usize>>,
|
||||
}
|
||||
|
||||
#[stable(feature = "collection_debug", since = "1.17.0")]
|
||||
|
@ -350,7 +350,7 @@ impl<T: Ord, A: Allocator> DerefMut for PeekMut<'_, T, A> {
|
|||
// the standard library as "leak amplification".
|
||||
unsafe {
|
||||
// SAFETY: len > 1 so len != 0.
|
||||
self.original_len = Some(NonZeroUsize::new_unchecked(len));
|
||||
self.original_len = Some(NonZero::new_unchecked(len));
|
||||
// SAFETY: len > 1 so all this does for now is leak elements,
|
||||
// which is safe.
|
||||
self.heap.data.set_len(1);
|
||||
|
@ -1576,8 +1576,8 @@ unsafe impl<T, A: Allocator> SourceIter for IntoIter<T, A> {
|
|||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
#[doc(hidden)]
|
||||
unsafe impl<I, A: Allocator> InPlaceIterable for IntoIter<I, A> {
|
||||
const EXPAND_BY: Option<NonZeroUsize> = NonZeroUsize::new(1);
|
||||
const MERGE_BY: Option<NonZeroUsize> = NonZeroUsize::new(1);
|
||||
const EXPAND_BY: Option<NonZero<usize>> = NonZero::new(1);
|
||||
const MERGE_BY: Option<NonZero<usize>> = NonZero::new(1);
|
||||
}
|
||||
|
||||
unsafe impl<I> AsVecIntoIter for IntoIter<I> {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use core::iter::{FusedIterator, TrustedLen};
|
||||
use core::num::NonZeroUsize;
|
||||
use core::num::NonZero;
|
||||
use core::{array, fmt, mem::MaybeUninit, ops::Try, ptr};
|
||||
|
||||
use crate::alloc::{Allocator, Global};
|
||||
|
@ -54,7 +54,7 @@ impl<T, A: Allocator> Iterator for IntoIter<T, A> {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
let len = self.inner.len;
|
||||
let rem = if len < n {
|
||||
self.inner.clear();
|
||||
|
@ -63,7 +63,7 @@ impl<T, A: Allocator> Iterator for IntoIter<T, A> {
|
|||
self.inner.drain(..n);
|
||||
0
|
||||
};
|
||||
NonZeroUsize::new(rem).map_or(Ok(()), Err)
|
||||
NonZero::new(rem).map_or(Ok(()), Err)
|
||||
}
|
||||
|
||||
#[inline]
|
||||
|
@ -183,7 +183,7 @@ impl<T, A: Allocator> DoubleEndedIterator for IntoIter<T, A> {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
let len = self.inner.len;
|
||||
let rem = if len < n {
|
||||
self.inner.clear();
|
||||
|
@ -192,7 +192,7 @@ impl<T, A: Allocator> DoubleEndedIterator for IntoIter<T, A> {
|
|||
self.inner.truncate(len - n);
|
||||
0
|
||||
};
|
||||
NonZeroUsize::new(rem).map_or(Ok(()), Err)
|
||||
NonZero::new(rem).map_or(Ok(()), Err)
|
||||
}
|
||||
|
||||
fn try_rfold<B, F, R>(&mut self, mut init: B, mut f: F) -> R
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use core::iter::{FusedIterator, TrustedLen, TrustedRandomAccess, TrustedRandomAccessNoCoerce};
|
||||
use core::num::NonZeroUsize;
|
||||
use core::num::NonZero;
|
||||
use core::ops::Try;
|
||||
use core::{fmt, mem, slice};
|
||||
|
||||
|
@ -56,7 +56,7 @@ impl<'a, T> Iterator for Iter<'a, T> {
|
|||
}
|
||||
}
|
||||
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
let remaining = self.i1.advance_by(n);
|
||||
match remaining {
|
||||
Ok(()) => return Ok(()),
|
||||
|
@ -128,7 +128,7 @@ impl<'a, T> DoubleEndedIterator for Iter<'a, T> {
|
|||
}
|
||||
}
|
||||
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
match self.i2.advance_back_by(n) {
|
||||
Ok(()) => return Ok(()),
|
||||
Err(n) => {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use core::iter::{FusedIterator, TrustedLen, TrustedRandomAccess, TrustedRandomAccessNoCoerce};
|
||||
use core::num::NonZeroUsize;
|
||||
use core::num::NonZero;
|
||||
use core::ops::Try;
|
||||
use core::{fmt, mem, slice};
|
||||
|
||||
|
@ -48,7 +48,7 @@ impl<'a, T> Iterator for IterMut<'a, T> {
|
|||
}
|
||||
}
|
||||
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
match self.i1.advance_by(n) {
|
||||
Ok(()) => return Ok(()),
|
||||
Err(remaining) => {
|
||||
|
@ -119,7 +119,7 @@ impl<'a, T> DoubleEndedIterator for IterMut<'a, T> {
|
|||
}
|
||||
}
|
||||
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
match self.i2.advance_back_by(n) {
|
||||
Ok(()) => return Ok(()),
|
||||
Err(remaining) => {
|
||||
|
|
|
@ -128,6 +128,7 @@
|
|||
#![feature(extend_one)]
|
||||
#![feature(fmt_internals)]
|
||||
#![feature(fn_traits)]
|
||||
#![feature(generic_nonzero)]
|
||||
#![feature(hasher_prefixfree_extras)]
|
||||
#![feature(hint_assert_unchecked)]
|
||||
#![feature(inline_const)]
|
||||
|
|
|
@ -160,14 +160,14 @@ use core::alloc::Layout;
|
|||
use core::iter::{InPlaceIterable, SourceIter, TrustedRandomAccessNoCoerce};
|
||||
use core::marker::PhantomData;
|
||||
use core::mem::{self, ManuallyDrop, SizedTypeProperties};
|
||||
use core::num::NonZeroUsize;
|
||||
use core::num::NonZero;
|
||||
use core::ptr::{self, NonNull};
|
||||
|
||||
use super::{InPlaceDrop, InPlaceDstDataSrcBufDrop, SpecFromIter, SpecFromIterNested, Vec};
|
||||
|
||||
const fn in_place_collectible<DEST, SRC>(
|
||||
step_merge: Option<NonZeroUsize>,
|
||||
step_expand: Option<NonZeroUsize>,
|
||||
step_merge: Option<NonZero<usize>>,
|
||||
step_expand: Option<NonZero<usize>>,
|
||||
) -> bool {
|
||||
// Require matching alignments because an alignment-changing realloc is inefficient on many
|
||||
// system allocators and better implementations would require the unstable Allocator trait.
|
||||
|
|
|
@ -12,7 +12,7 @@ use core::iter::{
|
|||
};
|
||||
use core::marker::PhantomData;
|
||||
use core::mem::{self, ManuallyDrop, MaybeUninit, SizedTypeProperties};
|
||||
use core::num::NonZeroUsize;
|
||||
use core::num::NonZero;
|
||||
#[cfg(not(no_global_oom_handling))]
|
||||
use core::ops::Deref;
|
||||
use core::ptr::{self, NonNull};
|
||||
|
@ -234,7 +234,7 @@ impl<T, A: Allocator> Iterator for IntoIter<T, A> {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
let step_size = self.len().min(n);
|
||||
let to_drop = ptr::slice_from_raw_parts_mut(self.ptr.as_ptr(), step_size);
|
||||
if T::IS_ZST {
|
||||
|
@ -248,7 +248,7 @@ impl<T, A: Allocator> Iterator for IntoIter<T, A> {
|
|||
unsafe {
|
||||
ptr::drop_in_place(to_drop);
|
||||
}
|
||||
NonZeroUsize::new(n - step_size).map_or(Ok(()), Err)
|
||||
NonZero::new(n - step_size).map_or(Ok(()), Err)
|
||||
}
|
||||
|
||||
#[inline]
|
||||
|
@ -336,7 +336,7 @@ impl<T, A: Allocator> DoubleEndedIterator for IntoIter<T, A> {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
let step_size = self.len().min(n);
|
||||
if T::IS_ZST {
|
||||
// SAFETY: same as for advance_by()
|
||||
|
@ -350,7 +350,7 @@ impl<T, A: Allocator> DoubleEndedIterator for IntoIter<T, A> {
|
|||
unsafe {
|
||||
ptr::drop_in_place(to_drop);
|
||||
}
|
||||
NonZeroUsize::new(n - step_size).map_or(Ok(()), Err)
|
||||
NonZero::new(n - step_size).map_or(Ok(()), Err)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -457,8 +457,8 @@ unsafe impl<#[may_dangle] T, A: Allocator> Drop for IntoIter<T, A> {
|
|||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
#[doc(hidden)]
|
||||
unsafe impl<T, A: Allocator> InPlaceIterable for IntoIter<T, A> {
|
||||
const EXPAND_BY: Option<NonZeroUsize> = NonZeroUsize::new(1);
|
||||
const MERGE_BY: Option<NonZeroUsize> = NonZeroUsize::new(1);
|
||||
const EXPAND_BY: Option<NonZero<usize>> = NonZero::new(1);
|
||||
const MERGE_BY: Option<NonZero<usize>> = NonZero::new(1);
|
||||
}
|
||||
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
#![feature(core_intrinsics)]
|
||||
#![feature(extract_if)]
|
||||
#![feature(exact_size_is_empty)]
|
||||
#![feature(generic_nonzero)]
|
||||
#![feature(linked_list_cursors)]
|
||||
#![feature(map_try_insert)]
|
||||
#![feature(new_uninit)]
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use core::alloc::{Allocator, Layout};
|
||||
use core::num::NonZeroUsize;
|
||||
use core::num::NonZero;
|
||||
use core::ptr::NonNull;
|
||||
use core::{assert_eq, assert_ne};
|
||||
use std::alloc::System;
|
||||
|
@ -1089,9 +1089,9 @@ fn test_into_iter_advance_by() {
|
|||
assert_eq!(i.advance_back_by(1), Ok(()));
|
||||
assert_eq!(i.as_slice(), [2, 3, 4]);
|
||||
|
||||
assert_eq!(i.advance_back_by(usize::MAX), Err(NonZeroUsize::new(usize::MAX - 3).unwrap()));
|
||||
assert_eq!(i.advance_back_by(usize::MAX), Err(NonZero::new(usize::MAX - 3).unwrap()));
|
||||
|
||||
assert_eq!(i.advance_by(usize::MAX), Err(NonZeroUsize::new(usize::MAX).unwrap()));
|
||||
assert_eq!(i.advance_by(usize::MAX), Err(NonZero::new(usize::MAX).unwrap()));
|
||||
|
||||
assert_eq!(i.advance_by(0), Ok(()));
|
||||
assert_eq!(i.advance_back_by(0), Ok(()));
|
||||
|
@ -1192,7 +1192,7 @@ fn test_from_iter_specialization_with_iterator_adapters() {
|
|||
.map(|(a, b)| a + b)
|
||||
.map_while(Option::Some)
|
||||
.skip(1)
|
||||
.map(|e| if e != usize::MAX { Ok(std::num::NonZeroUsize::new(e)) } else { Err(()) });
|
||||
.map(|e| if e != usize::MAX { Ok(NonZero::new(e)) } else { Err(()) });
|
||||
assert_in_place_trait(&iter);
|
||||
let sink = iter.collect::<Result<Vec<_>, _>>().unwrap();
|
||||
let sinkptr = sink.as_ptr();
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use core::num::NonZeroUsize;
|
||||
use core::num::NonZero;
|
||||
use std::assert_matches::assert_matches;
|
||||
use std::collections::TryReserveErrorKind::*;
|
||||
use std::collections::{vec_deque::Drain, VecDeque};
|
||||
|
@ -445,9 +445,9 @@ fn test_into_iter() {
|
|||
assert_eq!(it.next_back(), Some(3));
|
||||
|
||||
let mut it = VecDeque::from(vec![1, 2, 3, 4, 5]).into_iter();
|
||||
assert_eq!(it.advance_by(10), Err(NonZeroUsize::new(5).unwrap()));
|
||||
assert_eq!(it.advance_by(10), Err(NonZero::new(5).unwrap()));
|
||||
let mut it = VecDeque::from(vec![1, 2, 3, 4, 5]).into_iter();
|
||||
assert_eq!(it.advance_back_by(10), Err(NonZeroUsize::new(5).unwrap()));
|
||||
assert_eq!(it.advance_back_by(10), Err(NonZero::new(5).unwrap()));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
//! Defines the `IntoIter` owned iterator for arrays.
|
||||
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::{
|
||||
fmt,
|
||||
intrinsics::transmute_unchecked,
|
||||
|
@ -280,7 +280,7 @@ impl<T, const N: usize> Iterator for IntoIter<T, N> {
|
|||
self.next_back()
|
||||
}
|
||||
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
// This also moves the start, which marks them as conceptually "dropped",
|
||||
// so if anything goes bad then our drop impl won't double-free them.
|
||||
let range_to_drop = self.alive.take_prefix(n);
|
||||
|
@ -292,7 +292,7 @@ impl<T, const N: usize> Iterator for IntoIter<T, N> {
|
|||
ptr::drop_in_place(MaybeUninit::slice_assume_init_mut(slice));
|
||||
}
|
||||
|
||||
NonZeroUsize::new(remaining).map_or(Ok(()), Err)
|
||||
NonZero::new(remaining).map_or(Ok(()), Err)
|
||||
}
|
||||
|
||||
#[inline]
|
||||
|
@ -335,7 +335,7 @@ impl<T, const N: usize> DoubleEndedIterator for IntoIter<T, N> {
|
|||
})
|
||||
}
|
||||
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
// This also moves the end, which marks them as conceptually "dropped",
|
||||
// so if anything goes bad then our drop impl won't double-free them.
|
||||
let range_to_drop = self.alive.take_suffix(n);
|
||||
|
@ -347,7 +347,7 @@ impl<T, const N: usize> DoubleEndedIterator for IntoIter<T, N> {
|
|||
ptr::drop_in_place(MaybeUninit::slice_assume_init_mut(slice));
|
||||
}
|
||||
|
||||
NonZeroUsize::new(remaining).map_or(Ok(()), Err)
|
||||
NonZero::new(remaining).map_or(Ok(()), Err)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
use crate::escape;
|
||||
use crate::fmt;
|
||||
use crate::iter::FusedIterator;
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
|
||||
mod ascii_char;
|
||||
#[unstable(feature = "ascii_char", issue = "110998")]
|
||||
|
@ -133,7 +133,7 @@ impl Iterator for EscapeDefault {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
self.0.advance_by(n)
|
||||
}
|
||||
}
|
||||
|
@ -146,7 +146,7 @@ impl DoubleEndedIterator for EscapeDefault {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
self.0.advance_back_by(n)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -43,7 +43,7 @@ use crate::error::Error;
|
|||
use crate::escape;
|
||||
use crate::fmt::{self, Write};
|
||||
use crate::iter::FusedIterator;
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
|
||||
pub(crate) use self::methods::EscapeDebugExtArgs;
|
||||
|
||||
|
@ -185,7 +185,7 @@ impl Iterator for EscapeUnicode {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
self.0.advance_by(n)
|
||||
}
|
||||
}
|
||||
|
@ -260,7 +260,7 @@ impl Iterator for EscapeDefault {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
self.0.advance_by(n)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -33,7 +33,7 @@ is_bytewise_comparable!(u8, u16, u32, u64, u128, usize, i8, i16, i32, i64, i128,
|
|||
// so we can compare them directly.
|
||||
is_bytewise_comparable!(bool, char, super::Ordering);
|
||||
|
||||
// SAFETY: Similarly, the non-zero types have a niche, but no undef and no pointers,
|
||||
// SAFETY: Similarly, the `NonZero` type has a niche, but no undef and no pointers,
|
||||
// and they compare like their underlying numeric type.
|
||||
is_bytewise_comparable!(
|
||||
NonZeroU8,
|
||||
|
@ -50,7 +50,7 @@ is_bytewise_comparable!(
|
|||
NonZeroIsize,
|
||||
);
|
||||
|
||||
// SAFETY: The NonZero types have the "null" optimization guaranteed, and thus
|
||||
// SAFETY: The `NonZero` type has the "null" optimization guaranteed, and thus
|
||||
// are also safe to equality-compare bitwise inside an `Option`.
|
||||
// The way `PartialOrd` is defined for `Option` means that this wouldn't work
|
||||
// for `<` or `>` on the signed types, but since we only do `==` it's fine.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
//! Helper code for character escaping.
|
||||
|
||||
use crate::ascii;
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::Range;
|
||||
|
||||
const HEX_DIGITS: [ascii::Char; 16] = *b"0123456789abcdef".as_ascii().unwrap();
|
||||
|
@ -106,11 +106,11 @@ impl<const N: usize> EscapeIterInner<N> {
|
|||
self.alive.next_back().map(|i| self.data[usize::from(i)].to_u8())
|
||||
}
|
||||
|
||||
pub fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
pub fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
self.alive.advance_by(n)
|
||||
}
|
||||
|
||||
pub fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
pub fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
self.alive.advance_back_by(n)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@ use crate::iter::adapters::SourceIter;
|
|||
use crate::iter::{
|
||||
ByRefSized, FusedIterator, InPlaceIterable, TrustedFused, TrustedRandomAccessNoCoerce,
|
||||
};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::{ControlFlow, NeverShortCircuit, Try};
|
||||
|
||||
/// An iterator over `N` elements of the iterator at a time.
|
||||
|
@ -253,9 +253,9 @@ where
|
|||
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe impl<I: InPlaceIterable + Iterator, const N: usize> InPlaceIterable for ArrayChunks<I, N> {
|
||||
const EXPAND_BY: Option<NonZeroUsize> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZeroUsize> = const {
|
||||
match (I::MERGE_BY, NonZeroUsize::new(N)) {
|
||||
const EXPAND_BY: Option<NonZero<usize>> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZero<usize>> = const {
|
||||
match (I::MERGE_BY, NonZero::new(N)) {
|
||||
(Some(m), Some(n)) => m.checked_mul(n),
|
||||
_ => None,
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::{NeverShortCircuit, Try};
|
||||
|
||||
/// Like `Iterator::by_ref`, but requiring `Sized` so it can forward generics.
|
||||
|
@ -27,7 +27,7 @@ impl<I: Iterator> Iterator for ByRefSized<'_, I> {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
I::advance_by(self.0, n)
|
||||
}
|
||||
|
||||
|
@ -63,7 +63,7 @@ impl<I: DoubleEndedIterator> DoubleEndedIterator for ByRefSized<'_, I> {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
I::advance_back_by(self.0, n)
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use crate::iter::{FusedIterator, TrustedLen};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::Try;
|
||||
|
||||
/// An iterator that links two iterators together, in a chain.
|
||||
|
@ -96,7 +96,7 @@ where
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_by(&mut self, mut n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, mut n: usize) -> Result<(), NonZero<usize>> {
|
||||
if let Some(ref mut a) = self.a {
|
||||
n = match a.advance_by(n) {
|
||||
Ok(()) => return Ok(()),
|
||||
|
@ -110,7 +110,7 @@ where
|
|||
// we don't fuse the second iterator
|
||||
}
|
||||
|
||||
NonZeroUsize::new(n).map_or(Ok(()), Err)
|
||||
NonZero::new(n).map_or(Ok(()), Err)
|
||||
}
|
||||
|
||||
#[inline]
|
||||
|
@ -182,7 +182,7 @@ where
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_back_by(&mut self, mut n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, mut n: usize) -> Result<(), NonZero<usize>> {
|
||||
if let Some(ref mut b) = self.b {
|
||||
n = match b.advance_back_by(n) {
|
||||
Ok(()) => return Ok(()),
|
||||
|
@ -196,7 +196,7 @@ where
|
|||
// we don't fuse the second iterator
|
||||
}
|
||||
|
||||
NonZeroUsize::new(n).map_or(Ok(()), Err)
|
||||
NonZero::new(n).map_or(Ok(()), Err)
|
||||
}
|
||||
|
||||
#[inline]
|
||||
|
|
|
@ -3,7 +3,7 @@ use crate::iter::adapters::{
|
|||
};
|
||||
use crate::iter::{FusedIterator, InPlaceIterable, TrustedLen, UncheckedIterator};
|
||||
use crate::ops::Try;
|
||||
use core::num::NonZeroUsize;
|
||||
use core::num::NonZero;
|
||||
|
||||
/// An iterator that clones the elements of an underlying iterator.
|
||||
///
|
||||
|
@ -185,6 +185,6 @@ where
|
|||
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe impl<I: InPlaceIterable> InPlaceIterable for Cloned<I> {
|
||||
const EXPAND_BY: Option<NonZeroUsize> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZeroUsize> = I::MERGE_BY;
|
||||
const EXPAND_BY: Option<NonZero<usize>> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZero<usize>> = I::MERGE_BY;
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ use crate::iter::adapters::{
|
|||
use crate::iter::{FusedIterator, InPlaceIterable, TrustedLen};
|
||||
use crate::mem::MaybeUninit;
|
||||
use crate::mem::SizedTypeProperties;
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::Try;
|
||||
use crate::{array, ptr};
|
||||
|
||||
|
@ -90,7 +90,7 @@ where
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
self.it.advance_by(n)
|
||||
}
|
||||
|
||||
|
@ -131,7 +131,7 @@ where
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
self.it.advance_back_by(n)
|
||||
}
|
||||
}
|
||||
|
@ -272,6 +272,6 @@ where
|
|||
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe impl<I: InPlaceIterable> InPlaceIterable for Copied<I> {
|
||||
const EXPAND_BY: Option<NonZeroUsize> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZeroUsize> = I::MERGE_BY;
|
||||
const EXPAND_BY: Option<NonZero<usize>> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZero<usize>> = I::MERGE_BY;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::{iter::FusedIterator, ops::Try};
|
||||
|
||||
/// An iterator that repeats endlessly.
|
||||
|
@ -82,7 +82,7 @@ where
|
|||
|
||||
#[inline]
|
||||
#[rustc_inherit_overflow_checks]
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
let mut n = match self.iter.advance_by(n) {
|
||||
Ok(()) => return Ok(()),
|
||||
Err(rem) => rem.get(),
|
||||
|
@ -97,7 +97,7 @@ where
|
|||
};
|
||||
}
|
||||
|
||||
NonZeroUsize::new(n).map_or(Ok(()), Err)
|
||||
NonZero::new(n).map_or(Ok(()), Err)
|
||||
}
|
||||
|
||||
// No `fold` override, because `fold` doesn't make much sense for `Cycle`,
|
||||
|
|
|
@ -2,7 +2,7 @@ use crate::iter::adapters::{
|
|||
zip::try_get_unchecked, SourceIter, TrustedRandomAccess, TrustedRandomAccessNoCoerce,
|
||||
};
|
||||
use crate::iter::{FusedIterator, InPlaceIterable, TrustedFused, TrustedLen};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::Try;
|
||||
|
||||
/// An iterator that yields the current count and the element during iteration.
|
||||
|
@ -115,7 +115,7 @@ where
|
|||
|
||||
#[inline]
|
||||
#[rustc_inherit_overflow_checks]
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
let remaining = self.iter.advance_by(n);
|
||||
let advanced = match remaining {
|
||||
Ok(()) => n,
|
||||
|
@ -206,7 +206,7 @@ where
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
// we do not need to update the count since that only tallies the number of items
|
||||
// consumed from the front. consuming items from the back can never reduce that.
|
||||
self.iter.advance_back_by(n)
|
||||
|
@ -265,8 +265,8 @@ where
|
|||
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe impl<I: InPlaceIterable> InPlaceIterable for Enumerate<I> {
|
||||
const EXPAND_BY: Option<NonZeroUsize> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZeroUsize> = I::MERGE_BY;
|
||||
const EXPAND_BY: Option<NonZero<usize>> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZero<usize>> = I::MERGE_BY;
|
||||
}
|
||||
|
||||
#[stable(feature = "default_iters", since = "1.70.0")]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::fmt;
|
||||
use crate::iter::{adapters::SourceIter, FusedIterator, InPlaceIterable, TrustedFused};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::Try;
|
||||
use core::array;
|
||||
use core::mem::{ManuallyDrop, MaybeUninit};
|
||||
|
@ -209,6 +209,6 @@ where
|
|||
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe impl<I: InPlaceIterable, P> InPlaceIterable for Filter<I, P> {
|
||||
const EXPAND_BY: Option<NonZeroUsize> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZeroUsize> = I::MERGE_BY;
|
||||
const EXPAND_BY: Option<NonZero<usize>> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZero<usize>> = I::MERGE_BY;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::iter::{adapters::SourceIter, FusedIterator, InPlaceIterable, TrustedFused};
|
||||
use crate::mem::{ManuallyDrop, MaybeUninit};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::{ControlFlow, Try};
|
||||
use crate::{array, fmt};
|
||||
|
||||
|
@ -210,6 +210,6 @@ where
|
|||
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe impl<I: InPlaceIterable, F> InPlaceIterable for FilterMap<I, F> {
|
||||
const EXPAND_BY: Option<NonZeroUsize> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZeroUsize> = I::MERGE_BY;
|
||||
const EXPAND_BY: Option<NonZero<usize>> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZero<usize>> = I::MERGE_BY;
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ use crate::iter::{
|
|||
TrustedLen,
|
||||
};
|
||||
use crate::iter::{Once, OnceWith};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::{ControlFlow, Try};
|
||||
use crate::result;
|
||||
use crate::{array, fmt, option};
|
||||
|
@ -90,7 +90,7 @@ where
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
self.inner.advance_by(n)
|
||||
}
|
||||
|
||||
|
@ -135,7 +135,7 @@ where
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
self.inner.advance_back_by(n)
|
||||
}
|
||||
}
|
||||
|
@ -165,13 +165,13 @@ where
|
|||
I: InPlaceIterable,
|
||||
U: BoundedSize + IntoIterator,
|
||||
{
|
||||
const EXPAND_BY: Option<NonZeroUsize> = const {
|
||||
const EXPAND_BY: Option<NonZero<usize>> = const {
|
||||
match (I::EXPAND_BY, U::UPPER_BOUND) {
|
||||
(Some(m), Some(n)) => m.checked_mul(n),
|
||||
_ => None,
|
||||
}
|
||||
};
|
||||
const MERGE_BY: Option<NonZeroUsize> = I::MERGE_BY;
|
||||
const MERGE_BY: Option<NonZero<usize>> = I::MERGE_BY;
|
||||
}
|
||||
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
|
@ -200,7 +200,7 @@ where
|
|||
#[rustc_specialization_trait]
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe trait BoundedSize {
|
||||
const UPPER_BOUND: Option<NonZeroUsize> = NonZeroUsize::new(1);
|
||||
const UPPER_BOUND: Option<NonZero<usize>> = NonZero::new(1);
|
||||
}
|
||||
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
|
@ -217,31 +217,31 @@ unsafe impl<T> BoundedSize for Once<T> {}
|
|||
unsafe impl<T> BoundedSize for OnceWith<T> {}
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe impl<T, const N: usize> BoundedSize for [T; N] {
|
||||
const UPPER_BOUND: Option<NonZeroUsize> = NonZeroUsize::new(N);
|
||||
const UPPER_BOUND: Option<NonZero<usize>> = NonZero::new(N);
|
||||
}
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe impl<T, const N: usize> BoundedSize for array::IntoIter<T, N> {
|
||||
const UPPER_BOUND: Option<NonZeroUsize> = NonZeroUsize::new(N);
|
||||
const UPPER_BOUND: Option<NonZero<usize>> = NonZero::new(N);
|
||||
}
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe impl<I: BoundedSize, P> BoundedSize for Filter<I, P> {
|
||||
const UPPER_BOUND: Option<NonZeroUsize> = I::UPPER_BOUND;
|
||||
const UPPER_BOUND: Option<NonZero<usize>> = I::UPPER_BOUND;
|
||||
}
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe impl<I: BoundedSize, P> BoundedSize for FilterMap<I, P> {
|
||||
const UPPER_BOUND: Option<NonZeroUsize> = I::UPPER_BOUND;
|
||||
const UPPER_BOUND: Option<NonZero<usize>> = I::UPPER_BOUND;
|
||||
}
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe impl<I: BoundedSize, F> BoundedSize for Map<I, F> {
|
||||
const UPPER_BOUND: Option<NonZeroUsize> = I::UPPER_BOUND;
|
||||
const UPPER_BOUND: Option<NonZero<usize>> = I::UPPER_BOUND;
|
||||
}
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe impl<I: BoundedSize> BoundedSize for Copied<I> {
|
||||
const UPPER_BOUND: Option<NonZeroUsize> = I::UPPER_BOUND;
|
||||
const UPPER_BOUND: Option<NonZero<usize>> = I::UPPER_BOUND;
|
||||
}
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe impl<I: BoundedSize> BoundedSize for Cloned<I> {
|
||||
const UPPER_BOUND: Option<NonZeroUsize> = I::UPPER_BOUND;
|
||||
const UPPER_BOUND: Option<NonZero<usize>> = I::UPPER_BOUND;
|
||||
}
|
||||
|
||||
/// An iterator that flattens one level of nesting in an iterator of things
|
||||
|
@ -322,7 +322,7 @@ where
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
self.inner.advance_by(n)
|
||||
}
|
||||
|
||||
|
@ -367,7 +367,7 @@ where
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
self.inner.advance_back_by(n)
|
||||
}
|
||||
}
|
||||
|
@ -394,13 +394,13 @@ where
|
|||
I: InPlaceIterable + Iterator,
|
||||
<I as Iterator>::Item: IntoIterator + BoundedSize,
|
||||
{
|
||||
const EXPAND_BY: Option<NonZeroUsize> = const {
|
||||
const EXPAND_BY: Option<NonZero<usize>> = const {
|
||||
match (I::EXPAND_BY, I::Item::UPPER_BOUND) {
|
||||
(Some(m), Some(n)) => m.checked_mul(n),
|
||||
_ => None,
|
||||
}
|
||||
};
|
||||
const MERGE_BY: Option<NonZeroUsize> = I::MERGE_BY;
|
||||
const MERGE_BY: Option<NonZero<usize>> = I::MERGE_BY;
|
||||
}
|
||||
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
|
@ -669,7 +669,7 @@ where
|
|||
|
||||
#[inline]
|
||||
#[rustc_inherit_overflow_checks]
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
#[inline]
|
||||
#[rustc_inherit_overflow_checks]
|
||||
fn advance<U: Iterator>(n: usize, iter: &mut U) -> ControlFlow<(), usize> {
|
||||
|
@ -680,7 +680,7 @@ where
|
|||
}
|
||||
|
||||
match self.iter_try_fold(n, advance) {
|
||||
ControlFlow::Continue(remaining) => NonZeroUsize::new(remaining).map_or(Ok(()), Err),
|
||||
ControlFlow::Continue(remaining) => NonZero::new(remaining).map_or(Ok(()), Err),
|
||||
_ => Ok(()),
|
||||
}
|
||||
}
|
||||
|
@ -759,7 +759,7 @@ where
|
|||
|
||||
#[inline]
|
||||
#[rustc_inherit_overflow_checks]
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
#[inline]
|
||||
#[rustc_inherit_overflow_checks]
|
||||
fn advance<U: DoubleEndedIterator>(n: usize, iter: &mut U) -> ControlFlow<(), usize> {
|
||||
|
@ -770,7 +770,7 @@ where
|
|||
}
|
||||
|
||||
match self.iter_try_rfold(n, advance) {
|
||||
ControlFlow::Continue(remaining) => NonZeroUsize::new(remaining).map_or(Ok(()), Err),
|
||||
ControlFlow::Continue(remaining) => NonZero::new(remaining).map_or(Ok(()), Err),
|
||||
_ => Ok(()),
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::fmt;
|
||||
use crate::iter::{adapters::SourceIter, FusedIterator, InPlaceIterable, TrustedFused};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::Try;
|
||||
|
||||
/// An iterator that calls a function with a reference to each element before
|
||||
|
@ -168,6 +168,6 @@ where
|
|||
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe impl<I: InPlaceIterable, F> InPlaceIterable for Inspect<I, F> {
|
||||
const EXPAND_BY: Option<NonZeroUsize> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZeroUsize> = I::MERGE_BY;
|
||||
const EXPAND_BY: Option<NonZero<usize>> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZero<usize>> = I::MERGE_BY;
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@ use crate::iter::adapters::{
|
|||
zip::try_get_unchecked, SourceIter, TrustedRandomAccess, TrustedRandomAccessNoCoerce,
|
||||
};
|
||||
use crate::iter::{FusedIterator, InPlaceIterable, TrustedFused, TrustedLen, UncheckedIterator};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::Try;
|
||||
|
||||
/// An iterator that maps the values of `iter` with `f`.
|
||||
|
@ -237,6 +237,6 @@ where
|
|||
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe impl<I: InPlaceIterable, F> InPlaceIterable for Map<I, F> {
|
||||
const EXPAND_BY: Option<NonZeroUsize> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZeroUsize> = I::MERGE_BY;
|
||||
const EXPAND_BY: Option<NonZero<usize>> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZero<usize>> = I::MERGE_BY;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::fmt;
|
||||
use crate::iter::{adapters::SourceIter, InPlaceIterable};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::{ControlFlow, Try};
|
||||
|
||||
/// An iterator that only accepts elements while `predicate` returns `Some(_)`.
|
||||
|
@ -84,6 +84,6 @@ where
|
|||
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe impl<I: InPlaceIterable, P> InPlaceIterable for MapWhile<I, P> {
|
||||
const EXPAND_BY: Option<NonZeroUsize> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZeroUsize> = I::MERGE_BY;
|
||||
const EXPAND_BY: Option<NonZero<usize>> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZero<usize>> = I::MERGE_BY;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use crate::iter::InPlaceIterable;
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::{ChangeOutputType, ControlFlow, FromResidual, Residual, Try};
|
||||
|
||||
mod array_chunks;
|
||||
|
@ -234,6 +234,6 @@ unsafe impl<I, R> InPlaceIterable for GenericShunt<'_, I, R>
|
|||
where
|
||||
I: InPlaceIterable,
|
||||
{
|
||||
const EXPAND_BY: Option<NonZeroUsize> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZeroUsize> = I::MERGE_BY;
|
||||
const EXPAND_BY: Option<NonZero<usize>> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZero<usize>> = I::MERGE_BY;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use crate::iter::{FusedIterator, TrustedLen};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::Try;
|
||||
|
||||
/// A double-ended iterator with the direction inverted.
|
||||
|
@ -39,7 +39,7 @@ where
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
self.iter.advance_back_by(n)
|
||||
}
|
||||
|
||||
|
@ -84,7 +84,7 @@ where
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
self.iter.advance_by(n)
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::fmt;
|
||||
use crate::iter::{adapters::SourceIter, InPlaceIterable};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::{ControlFlow, Try};
|
||||
|
||||
/// An iterator to maintain state while iterating another iterator.
|
||||
|
@ -94,6 +94,6 @@ where
|
|||
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe impl<St, F, I: InPlaceIterable> InPlaceIterable for Scan<I, St, F> {
|
||||
const EXPAND_BY: Option<NonZeroUsize> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZeroUsize> = I::MERGE_BY;
|
||||
const EXPAND_BY: Option<NonZero<usize>> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZero<usize>> = I::MERGE_BY;
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@ use crate::iter::{
|
|||
adapters::SourceIter, FusedIterator, InPlaceIterable, TrustedLen, TrustedRandomAccess,
|
||||
TrustedRandomAccessNoCoerce,
|
||||
};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::{ControlFlow, Try};
|
||||
|
||||
/// An iterator that skips over `n` elements of `iter`.
|
||||
|
@ -134,7 +134,7 @@ where
|
|||
|
||||
#[inline]
|
||||
#[rustc_inherit_overflow_checks]
|
||||
fn advance_by(&mut self, mut n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, mut n: usize) -> Result<(), NonZero<usize>> {
|
||||
let skip_inner = self.n;
|
||||
let skip_and_advance = skip_inner.saturating_add(n);
|
||||
|
||||
|
@ -154,7 +154,7 @@ where
|
|||
}
|
||||
}
|
||||
|
||||
NonZeroUsize::new(n).map_or(Ok(()), Err)
|
||||
NonZero::new(n).map_or(Ok(()), Err)
|
||||
}
|
||||
|
||||
#[doc(hidden)]
|
||||
|
@ -234,11 +234,11 @@ where
|
|||
impl_fold_via_try_fold! { rfold -> try_rfold }
|
||||
|
||||
#[inline]
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
let min = crate::cmp::min(self.len(), n);
|
||||
let rem = self.iter.advance_back_by(min);
|
||||
assert!(rem.is_ok(), "ExactSizeIterator contract violation");
|
||||
NonZeroUsize::new(n - min).map_or(Ok(()), Err)
|
||||
NonZero::new(n - min).map_or(Ok(()), Err)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -264,8 +264,8 @@ where
|
|||
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe impl<I: InPlaceIterable> InPlaceIterable for Skip<I> {
|
||||
const EXPAND_BY: Option<NonZeroUsize> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZeroUsize> = I::MERGE_BY;
|
||||
const EXPAND_BY: Option<NonZero<usize>> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZero<usize>> = I::MERGE_BY;
|
||||
}
|
||||
|
||||
#[doc(hidden)]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::fmt;
|
||||
use crate::iter::{adapters::SourceIter, FusedIterator, InPlaceIterable, TrustedFused};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::Try;
|
||||
|
||||
/// An iterator that rejects elements while `predicate` returns `true`.
|
||||
|
@ -124,6 +124,6 @@ where
|
|||
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe impl<I: InPlaceIterable, F> InPlaceIterable for SkipWhile<I, F> {
|
||||
const EXPAND_BY: Option<NonZeroUsize> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZeroUsize> = I::MERGE_BY;
|
||||
const EXPAND_BY: Option<NonZero<usize>> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZero<usize>> = I::MERGE_BY;
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@ use crate::iter::{
|
|||
adapters::SourceIter, FusedIterator, InPlaceIterable, TrustedFused, TrustedLen,
|
||||
TrustedRandomAccess,
|
||||
};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::{ControlFlow, Try};
|
||||
|
||||
/// An iterator that only iterates over the first `n` iterations of `iter`.
|
||||
|
@ -117,7 +117,7 @@ where
|
|||
|
||||
#[inline]
|
||||
#[rustc_inherit_overflow_checks]
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
let min = self.n.min(n);
|
||||
let rem = match self.iter.advance_by(min) {
|
||||
Ok(()) => 0,
|
||||
|
@ -125,7 +125,7 @@ where
|
|||
};
|
||||
let advanced = min - rem;
|
||||
self.n -= advanced;
|
||||
NonZeroUsize::new(n - advanced).map_or(Ok(()), Err)
|
||||
NonZero::new(n - advanced).map_or(Ok(()), Err)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -145,8 +145,8 @@ where
|
|||
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe impl<I: InPlaceIterable> InPlaceIterable for Take<I> {
|
||||
const EXPAND_BY: Option<NonZeroUsize> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZeroUsize> = I::MERGE_BY;
|
||||
const EXPAND_BY: Option<NonZero<usize>> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZero<usize>> = I::MERGE_BY;
|
||||
}
|
||||
|
||||
#[stable(feature = "double_ended_take_iterator", since = "1.38.0")]
|
||||
|
@ -219,7 +219,7 @@ where
|
|||
|
||||
#[inline]
|
||||
#[rustc_inherit_overflow_checks]
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
// The amount by which the inner iterator needs to be shortened for it to be
|
||||
// at most as long as the take() amount.
|
||||
let trim_inner = self.iter.len().saturating_sub(self.n);
|
||||
|
@ -235,7 +235,7 @@ where
|
|||
let advanced_by_inner = advance_by - remainder;
|
||||
let advanced_by = advanced_by_inner - trim_inner;
|
||||
self.n -= advanced_by;
|
||||
NonZeroUsize::new(n - advanced_by).map_or(Ok(()), Err)
|
||||
NonZero::new(n - advanced_by).map_or(Ok(()), Err)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::fmt;
|
||||
use crate::iter::{adapters::SourceIter, FusedIterator, InPlaceIterable, TrustedFused};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::{ControlFlow, Try};
|
||||
|
||||
/// An iterator that only accepts elements while `predicate` returns `true`.
|
||||
|
@ -125,6 +125,6 @@ where
|
|||
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe impl<I: InPlaceIterable, F> InPlaceIterable for TakeWhile<I, F> {
|
||||
const EXPAND_BY: Option<NonZeroUsize> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZeroUsize> = I::MERGE_BY;
|
||||
const EXPAND_BY: Option<NonZero<usize>> = I::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZero<usize>> = I::MERGE_BY;
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@ use crate::cmp;
|
|||
use crate::fmt::{self, Debug};
|
||||
use crate::iter::{FusedIterator, TrustedFused};
|
||||
use crate::iter::{InPlaceIterable, SourceIter, TrustedLen, UncheckedIterator};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
|
||||
/// An iterator that iterates two other iterators simultaneously.
|
||||
///
|
||||
|
@ -489,8 +489,8 @@ where
|
|||
// Since SourceIter forwards the left hand side we do the same here
|
||||
#[unstable(issue = "none", feature = "inplace_iteration")]
|
||||
unsafe impl<A: InPlaceIterable, B> InPlaceIterable for Zip<A, B> {
|
||||
const EXPAND_BY: Option<NonZeroUsize> = A::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZeroUsize> = A::MERGE_BY;
|
||||
const EXPAND_BY: Option<NonZero<usize>> = A::EXPAND_BY;
|
||||
const MERGE_BY: Option<NonZero<usize>> = A::MERGE_BY;
|
||||
}
|
||||
|
||||
#[stable(feature = "rust1", since = "1.0.0")]
|
||||
|
|
|
@ -2,7 +2,7 @@ use crate::ascii::Char as AsciiChar;
|
|||
use crate::convert::TryFrom;
|
||||
use crate::mem;
|
||||
use crate::net::{Ipv4Addr, Ipv6Addr};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::{self, Try};
|
||||
|
||||
use super::{
|
||||
|
@ -629,12 +629,12 @@ trait RangeIteratorImpl {
|
|||
// Iterator
|
||||
fn spec_next(&mut self) -> Option<Self::Item>;
|
||||
fn spec_nth(&mut self, n: usize) -> Option<Self::Item>;
|
||||
fn spec_advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize>;
|
||||
fn spec_advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>>;
|
||||
|
||||
// DoubleEndedIterator
|
||||
fn spec_next_back(&mut self) -> Option<Self::Item>;
|
||||
fn spec_nth_back(&mut self, n: usize) -> Option<Self::Item>;
|
||||
fn spec_advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize>;
|
||||
fn spec_advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>>;
|
||||
}
|
||||
|
||||
impl<A: Step> RangeIteratorImpl for ops::Range<A> {
|
||||
|
@ -666,7 +666,7 @@ impl<A: Step> RangeIteratorImpl for ops::Range<A> {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
default fn spec_advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
default fn spec_advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
let available = if self.start <= self.end {
|
||||
Step::steps_between(&self.start, &self.end).unwrap_or(usize::MAX)
|
||||
} else {
|
||||
|
@ -678,7 +678,7 @@ impl<A: Step> RangeIteratorImpl for ops::Range<A> {
|
|||
self.start =
|
||||
Step::forward_checked(self.start.clone(), taken).expect("`Step` invariants not upheld");
|
||||
|
||||
NonZeroUsize::new(n - taken).map_or(Ok(()), Err)
|
||||
NonZero::new(n - taken).map_or(Ok(()), Err)
|
||||
}
|
||||
|
||||
#[inline]
|
||||
|
@ -707,7 +707,7 @@ impl<A: Step> RangeIteratorImpl for ops::Range<A> {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
default fn spec_advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
default fn spec_advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
let available = if self.start <= self.end {
|
||||
Step::steps_between(&self.start, &self.end).unwrap_or(usize::MAX)
|
||||
} else {
|
||||
|
@ -719,7 +719,7 @@ impl<A: Step> RangeIteratorImpl for ops::Range<A> {
|
|||
self.end =
|
||||
Step::backward_checked(self.end.clone(), taken).expect("`Step` invariants not upheld");
|
||||
|
||||
NonZeroUsize::new(n - taken).map_or(Ok(()), Err)
|
||||
NonZero::new(n - taken).map_or(Ok(()), Err)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -751,7 +751,7 @@ impl<T: TrustedStep> RangeIteratorImpl for ops::Range<T> {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn spec_advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn spec_advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
let available = if self.start <= self.end {
|
||||
Step::steps_between(&self.start, &self.end).unwrap_or(usize::MAX)
|
||||
} else {
|
||||
|
@ -766,7 +766,7 @@ impl<T: TrustedStep> RangeIteratorImpl for ops::Range<T> {
|
|||
// Otherwise 0 is returned which always safe to use.
|
||||
self.start = unsafe { Step::forward_unchecked(self.start, taken) };
|
||||
|
||||
NonZeroUsize::new(n - taken).map_or(Ok(()), Err)
|
||||
NonZero::new(n - taken).map_or(Ok(()), Err)
|
||||
}
|
||||
|
||||
#[inline]
|
||||
|
@ -795,7 +795,7 @@ impl<T: TrustedStep> RangeIteratorImpl for ops::Range<T> {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn spec_advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn spec_advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
let available = if self.start <= self.end {
|
||||
Step::steps_between(&self.start, &self.end).unwrap_or(usize::MAX)
|
||||
} else {
|
||||
|
@ -807,7 +807,7 @@ impl<T: TrustedStep> RangeIteratorImpl for ops::Range<T> {
|
|||
// SAFETY: same as the spec_advance_by() implementation
|
||||
self.end = unsafe { Step::backward_unchecked(self.end, taken) };
|
||||
|
||||
NonZeroUsize::new(n - taken).map_or(Ok(()), Err)
|
||||
NonZero::new(n - taken).map_or(Ok(()), Err)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -871,7 +871,7 @@ impl<A: Step> Iterator for ops::Range<A> {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
self.spec_advance_by(n)
|
||||
}
|
||||
|
||||
|
@ -949,7 +949,7 @@ impl<A: Step> DoubleEndedIterator for ops::Range<A> {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
self.spec_advance_back_by(n)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use crate::iter::{FusedIterator, TrustedLen};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
|
||||
/// Creates a new iterator that endlessly repeats a single element.
|
||||
///
|
||||
|
@ -81,7 +81,7 @@ impl<A: Clone> Iterator for Repeat<A> {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
// Advancing an infinite iterator of a single element is a no-op.
|
||||
let _ = n;
|
||||
Ok(())
|
||||
|
@ -110,7 +110,7 @@ impl<A: Clone> DoubleEndedIterator for Repeat<A> {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
// Advancing an infinite iterator of a single element is a no-op.
|
||||
let _ = n;
|
||||
Ok(())
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::iter::{FusedIterator, TrustedLen};
|
||||
use crate::mem::ManuallyDrop;
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
|
||||
/// Creates a new iterator that repeats a single element a given number of times.
|
||||
///
|
||||
|
@ -136,7 +136,7 @@ impl<A: Clone> Iterator for RepeatN<A> {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_by(&mut self, skip: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, skip: usize) -> Result<(), NonZero<usize>> {
|
||||
let len = self.count;
|
||||
|
||||
if skip >= len {
|
||||
|
@ -145,7 +145,7 @@ impl<A: Clone> Iterator for RepeatN<A> {
|
|||
|
||||
if skip > len {
|
||||
// SAFETY: we just checked that the difference is positive
|
||||
Err(unsafe { NonZeroUsize::new_unchecked(skip - len) })
|
||||
Err(unsafe { NonZero::new_unchecked(skip - len) })
|
||||
} else {
|
||||
self.count = len - skip;
|
||||
Ok(())
|
||||
|
@ -178,7 +178,7 @@ impl<A: Clone> DoubleEndedIterator for RepeatN<A> {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
self.advance_by(n)
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::{ControlFlow, Try};
|
||||
|
||||
/// An iterator able to yield elements from both ends.
|
||||
|
@ -119,8 +119,8 @@ pub trait DoubleEndedIterator: Iterator {
|
|||
///
|
||||
/// ```
|
||||
/// #![feature(iter_advance_by)]
|
||||
///
|
||||
/// use std::num::NonZeroUsize;
|
||||
///
|
||||
/// let a = [3, 4, 5, 6];
|
||||
/// let mut iter = a.iter();
|
||||
///
|
||||
|
@ -134,11 +134,11 @@ pub trait DoubleEndedIterator: Iterator {
|
|||
/// [`Err(k)`]: Err
|
||||
#[inline]
|
||||
#[unstable(feature = "iter_advance_by", reason = "recently added", issue = "77404")]
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
for i in 0..n {
|
||||
if self.next_back().is_none() {
|
||||
// SAFETY: `i` is always less than `n`.
|
||||
return Err(unsafe { NonZeroUsize::new_unchecked(n - i) });
|
||||
return Err(unsafe { NonZero::new_unchecked(n - i) });
|
||||
}
|
||||
}
|
||||
Ok(())
|
||||
|
@ -373,7 +373,7 @@ impl<'a, I: DoubleEndedIterator + ?Sized> DoubleEndedIterator for &'a mut I {
|
|||
fn next_back(&mut self) -> Option<I::Item> {
|
||||
(**self).next_back()
|
||||
}
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
(**self).advance_back_by(n)
|
||||
}
|
||||
fn nth_back(&mut self, n: usize) -> Option<I::Item> {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::array;
|
||||
use crate::cmp::{self, Ordering};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::{ChangeOutputType, ControlFlow, FromResidual, Residual, Try};
|
||||
|
||||
use super::super::try_process;
|
||||
|
@ -320,8 +320,8 @@ pub trait Iterator {
|
|||
///
|
||||
/// ```
|
||||
/// #![feature(iter_advance_by)]
|
||||
///
|
||||
/// use std::num::NonZeroUsize;
|
||||
///
|
||||
/// let a = [1, 2, 3, 4];
|
||||
/// let mut iter = a.iter();
|
||||
///
|
||||
|
@ -333,11 +333,11 @@ pub trait Iterator {
|
|||
#[inline]
|
||||
#[unstable(feature = "iter_advance_by", reason = "recently added", issue = "77404")]
|
||||
#[rustc_do_not_const_check]
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
for i in 0..n {
|
||||
if self.next().is_none() {
|
||||
// SAFETY: `i` is always less than `n`.
|
||||
return Err(unsafe { NonZeroUsize::new_unchecked(n - i) });
|
||||
return Err(unsafe { NonZero::new_unchecked(n - i) });
|
||||
}
|
||||
}
|
||||
Ok(())
|
||||
|
@ -4138,7 +4138,7 @@ impl<I: Iterator + ?Sized> Iterator for &mut I {
|
|||
fn size_hint(&self) -> (usize, Option<usize>) {
|
||||
(**self).size_hint()
|
||||
}
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
(**self).advance_by(n)
|
||||
}
|
||||
fn nth(&mut self, n: usize) -> Option<Self::Item> {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use crate::iter::Step;
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
|
||||
/// Same as FusedIterator
|
||||
///
|
||||
|
@ -91,12 +91,12 @@ pub unsafe trait InPlaceIterable {
|
|||
/// E.g. [[u8; 4]; 4].iter().flatten().flatten() would have a `EXPAND_BY` of 16.
|
||||
/// This is an upper bound, i.e. the transformations will produce at most this many items per
|
||||
/// input. It's meant for layout calculations.
|
||||
const EXPAND_BY: Option<NonZeroUsize>;
|
||||
const EXPAND_BY: Option<NonZero<usize>>;
|
||||
/// The product of many-to-one item reductions that happen throughout the iterator pipeline.
|
||||
/// E.g. [u8].iter().array_chunks::<4>().array_chunks::<4>() would have a `MERGE_BY` of 16.
|
||||
/// This is a lower bound, i.e. the transformations will consume at least this many items per
|
||||
/// output.
|
||||
const MERGE_BY: Option<NonZeroUsize>;
|
||||
const MERGE_BY: Option<NonZero<usize>>;
|
||||
}
|
||||
|
||||
/// A type that upholds all invariants of [`Step`].
|
||||
|
|
|
@ -312,10 +312,10 @@ macro_rules! nonzero_integer {
|
|||
/// #![feature(non_zero_count_ones)]
|
||||
/// # fn main() { test().unwrap(); }
|
||||
/// # fn test() -> Option<()> {
|
||||
#[doc = concat!("# use std::num::{self, ", stringify!($Ty), "};")]
|
||||
///
|
||||
/// let one = num::NonZeroU32::new(1)?;
|
||||
/// let three = num::NonZeroU32::new(3)?;
|
||||
/// # use std::num::*;
|
||||
/// #
|
||||
/// let one = NonZeroU32::new(1)?;
|
||||
/// let three = NonZeroU32::new(3)?;
|
||||
#[doc = concat!("let a = ", stringify!($Ty), "::new(0b100_0000)?;")]
|
||||
#[doc = concat!("let b = ", stringify!($Ty), "::new(0b100_0011)?;")]
|
||||
///
|
||||
|
@ -336,7 +336,7 @@ macro_rules! nonzero_integer {
|
|||
// SAFETY:
|
||||
// `self` is non-zero, which means it has at least one bit set, which means
|
||||
// that the result of `count_ones` is non-zero.
|
||||
unsafe { NonZeroU32::new_unchecked(self.get().count_ones()) }
|
||||
unsafe { NonZero::new_unchecked(self.get().count_ones()) }
|
||||
}
|
||||
|
||||
nonzero_integer_signedness_dependent_methods! {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::intrinsics::{unchecked_add, unchecked_sub};
|
||||
use crate::iter::{FusedIterator, TrustedLen};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
|
||||
/// Like a `Range<usize>`, but with a safety invariant that `start <= end`.
|
||||
///
|
||||
|
@ -130,9 +130,9 @@ impl Iterator for IndexRange {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
let taken = self.take_prefix(n);
|
||||
NonZeroUsize::new(n - taken.len()).map_or(Ok(()), Err)
|
||||
NonZero::new(n - taken.len()).map_or(Ok(()), Err)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -148,9 +148,9 @@ impl DoubleEndedIterator for IndexRange {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
let taken = self.take_suffix(n);
|
||||
NonZeroUsize::new(n - taken.len()).map_or(Ok(()), Err)
|
||||
NonZero::new(n - taken.len()).map_or(Ok(()), Err)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use crate::convert::{TryFrom, TryInto};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::{NonZero, NonZeroUsize};
|
||||
use crate::{cmp, fmt, hash, mem, num};
|
||||
|
||||
/// A type storing a `usize` which is a power of two, and thus
|
||||
|
@ -100,7 +100,7 @@ impl Alignment {
|
|||
#[inline]
|
||||
pub const fn as_nonzero(self) -> NonZeroUsize {
|
||||
// SAFETY: All the discriminants are non-zero.
|
||||
unsafe { NonZeroUsize::new_unchecked(self.as_usize()) }
|
||||
unsafe { NonZero::new_unchecked(self.as_usize()) }
|
||||
}
|
||||
|
||||
/// Returns the base-2 logarithm of the alignment.
|
||||
|
|
|
@ -6,7 +6,7 @@ use crate::intrinsics::assert_unsafe_precondition;
|
|||
use crate::marker::Unsize;
|
||||
use crate::mem::SizedTypeProperties;
|
||||
use crate::mem::{self, MaybeUninit};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::{NonZero, NonZeroUsize};
|
||||
use crate::ops::{CoerceUnsized, DispatchFromDyn};
|
||||
use crate::ptr;
|
||||
use crate::ptr::Unique;
|
||||
|
@ -295,7 +295,7 @@ impl<T: ?Sized> NonNull<T> {
|
|||
pub fn addr(self) -> NonZeroUsize {
|
||||
// SAFETY: The pointer is guaranteed by the type to be non-null,
|
||||
// meaning that the address will be non-zero.
|
||||
unsafe { NonZeroUsize::new_unchecked(self.pointer.addr()) }
|
||||
unsafe { NonZero::new_unchecked(self.pointer.addr()) }
|
||||
}
|
||||
|
||||
/// Creates a new pointer with the given address.
|
||||
|
|
|
@ -11,7 +11,7 @@ use crate::iter::{
|
|||
};
|
||||
use crate::marker::PhantomData;
|
||||
use crate::mem::{self, SizedTypeProperties};
|
||||
use crate::num::{NonZero, NonZeroUsize};
|
||||
use crate::num::NonZero;
|
||||
use crate::ptr::{self, invalid, invalid_mut, NonNull};
|
||||
|
||||
use super::{from_raw_parts, from_raw_parts_mut};
|
||||
|
|
|
@ -196,11 +196,11 @@ macro_rules! iterator {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
let advance = cmp::min(len!(self), n);
|
||||
// SAFETY: By construction, `advance` does not exceed `self.len()`.
|
||||
unsafe { self.post_inc_start(advance) };
|
||||
NonZeroUsize::new(n - advance).map_or(Ok(()), Err)
|
||||
NonZero::new(n - advance).map_or(Ok(()), Err)
|
||||
}
|
||||
|
||||
#[inline]
|
||||
|
@ -421,11 +421,11 @@ macro_rules! iterator {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize> {
|
||||
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
|
||||
let advance = cmp::min(len!(self), n);
|
||||
// SAFETY: By construction, `advance` does not exceed `self.len()`.
|
||||
unsafe { self.pre_dec_end(advance) };
|
||||
NonZeroUsize::new(n - advance).map_or(Ok(()), Err)
|
||||
NonZero::new(n - advance).map_or(Ok(()), Err)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ use crate::fmt;
|
|||
use crate::hint;
|
||||
use crate::intrinsics::exact_div;
|
||||
use crate::mem::{self, SizedTypeProperties};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::num::NonZero;
|
||||
use crate::ops::{Bound, OneSidedRange, Range, RangeBounds};
|
||||
use crate::panic::debug_assert_nounwind;
|
||||
use crate::ptr;
|
||||
|
@ -1086,7 +1086,7 @@ impl<T> [T] {
|
|||
#[inline]
|
||||
#[track_caller]
|
||||
pub fn windows(&self, size: usize) -> Windows<'_, T> {
|
||||
let size = NonZeroUsize::new(size).expect("window size must be non-zero");
|
||||
let size = NonZero::new(size).expect("window size must be non-zero");
|
||||
Windows::new(self, size)
|
||||
}
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ use crate::iter::{TrustedRandomAccess, TrustedRandomAccessNoCoerce};
|
|||
use crate::ops::Try;
|
||||
use crate::option;
|
||||
use crate::slice::{self, Split as SliceSplit};
|
||||
use core::num::NonZeroUsize;
|
||||
use core::num::{NonZero, NonZeroUsize};
|
||||
|
||||
use super::from_utf8_unchecked;
|
||||
use super::pattern::Pattern;
|
||||
|
@ -96,7 +96,7 @@ impl<'a> Iterator for Chars<'a> {
|
|||
unsafe { self.iter.advance_by(slurp).unwrap_unchecked() };
|
||||
}
|
||||
|
||||
NonZeroUsize::new(remainder).map_or(Ok(()), Err)
|
||||
NonZero::new(remainder).map_or(Ok(()), Err)
|
||||
}
|
||||
|
||||
#[inline]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use core::num::NonZeroUsize;
|
||||
use core::num::NonZero;
|
||||
use core::sync::atomic::{AtomicUsize, Ordering};
|
||||
use core::{array, assert_eq};
|
||||
|
||||
|
@ -548,7 +548,7 @@ fn array_intoiter_advance_by() {
|
|||
assert_eq!(counter.get(), 13);
|
||||
|
||||
let r = it.advance_by(123456);
|
||||
assert_eq!(r, Err(NonZeroUsize::new(123456 - 87).unwrap()));
|
||||
assert_eq!(r, Err(NonZero::new(123456 - 87).unwrap()));
|
||||
assert_eq!(it.len(), 0);
|
||||
assert_eq!(counter.get(), 100);
|
||||
|
||||
|
@ -558,7 +558,7 @@ fn array_intoiter_advance_by() {
|
|||
assert_eq!(counter.get(), 100);
|
||||
|
||||
let r = it.advance_by(10);
|
||||
assert_eq!(r, Err(NonZeroUsize::new(10).unwrap()));
|
||||
assert_eq!(r, Err(NonZero::new(10).unwrap()));
|
||||
assert_eq!(it.len(), 0);
|
||||
assert_eq!(counter.get(), 100);
|
||||
}
|
||||
|
@ -601,7 +601,7 @@ fn array_intoiter_advance_back_by() {
|
|||
assert_eq!(counter.get(), 13);
|
||||
|
||||
let r = it.advance_back_by(123456);
|
||||
assert_eq!(r, Err(NonZeroUsize::new(123456 - 87).unwrap()));
|
||||
assert_eq!(r, Err(NonZero::new(123456 - 87).unwrap()));
|
||||
assert_eq!(it.len(), 0);
|
||||
assert_eq!(counter.get(), 100);
|
||||
|
||||
|
@ -611,7 +611,7 @@ fn array_intoiter_advance_back_by() {
|
|||
assert_eq!(counter.get(), 100);
|
||||
|
||||
let r = it.advance_back_by(10);
|
||||
assert_eq!(r, Err(NonZeroUsize::new(10).unwrap()));
|
||||
assert_eq!(r, Err(NonZero::new(10).unwrap()));
|
||||
assert_eq!(it.len(), 0);
|
||||
assert_eq!(counter.get(), 100);
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use super::*;
|
||||
use core::iter::*;
|
||||
use core::num::NonZeroUsize;
|
||||
use core::num::NonZero;
|
||||
|
||||
#[test]
|
||||
fn test_iterator_chain() {
|
||||
|
@ -34,7 +34,7 @@ fn test_iterator_chain_advance_by() {
|
|||
let mut iter = Unfuse::new(xs).chain(Unfuse::new(ys));
|
||||
assert_eq!(iter.advance_by(i), Ok(()));
|
||||
assert_eq!(iter.next(), Some(&xs[i]));
|
||||
assert_eq!(iter.advance_by(100), Err(NonZeroUsize::new(100 - (len - i - 1)).unwrap()));
|
||||
assert_eq!(iter.advance_by(100), Err(NonZero::new(100 - (len - i - 1)).unwrap()));
|
||||
assert_eq!(iter.advance_by(0), Ok(()));
|
||||
}
|
||||
|
||||
|
@ -42,10 +42,7 @@ fn test_iterator_chain_advance_by() {
|
|||
let mut iter = Unfuse::new(xs).chain(Unfuse::new(ys));
|
||||
assert_eq!(iter.advance_by(xs.len() + i), Ok(()));
|
||||
assert_eq!(iter.next(), Some(&ys[i]));
|
||||
assert_eq!(
|
||||
iter.advance_by(100),
|
||||
Err(NonZeroUsize::new(100 - (ys.len() - i - 1)).unwrap())
|
||||
);
|
||||
assert_eq!(iter.advance_by(100), Err(NonZero::new(100 - (ys.len() - i - 1)).unwrap()));
|
||||
assert_eq!(iter.advance_by(0), Ok(()));
|
||||
}
|
||||
|
||||
|
@ -55,7 +52,7 @@ fn test_iterator_chain_advance_by() {
|
|||
assert_eq!(iter.advance_by(0), Ok(()));
|
||||
|
||||
let mut iter = xs.iter().chain(ys);
|
||||
assert_eq!(iter.advance_by(len + 1), Err(NonZeroUsize::new(1).unwrap()));
|
||||
assert_eq!(iter.advance_by(len + 1), Err(NonZero::new(1).unwrap()));
|
||||
assert_eq!(iter.advance_by(0), Ok(()));
|
||||
}
|
||||
|
||||
|
@ -74,10 +71,7 @@ fn test_iterator_chain_advance_back_by() {
|
|||
let mut iter = Unfuse::new(xs).chain(Unfuse::new(ys));
|
||||
assert_eq!(iter.advance_back_by(i), Ok(()));
|
||||
assert_eq!(iter.next_back(), Some(&ys[ys.len() - i - 1]));
|
||||
assert_eq!(
|
||||
iter.advance_back_by(100),
|
||||
Err(NonZeroUsize::new(100 - (len - i - 1)).unwrap())
|
||||
);
|
||||
assert_eq!(iter.advance_back_by(100), Err(NonZero::new(100 - (len - i - 1)).unwrap()));
|
||||
assert_eq!(iter.advance_back_by(0), Ok(()));
|
||||
}
|
||||
|
||||
|
@ -87,7 +81,7 @@ fn test_iterator_chain_advance_back_by() {
|
|||
assert_eq!(iter.next_back(), Some(&xs[xs.len() - i - 1]));
|
||||
assert_eq!(
|
||||
iter.advance_back_by(100),
|
||||
Err(NonZeroUsize::new(100 - (xs.len() - i - 1)).unwrap())
|
||||
Err(NonZero::new(100 - (xs.len() - i - 1)).unwrap())
|
||||
);
|
||||
assert_eq!(iter.advance_back_by(0), Ok(()));
|
||||
}
|
||||
|
@ -98,7 +92,7 @@ fn test_iterator_chain_advance_back_by() {
|
|||
assert_eq!(iter.advance_back_by(0), Ok(()));
|
||||
|
||||
let mut iter = xs.iter().chain(ys);
|
||||
assert_eq!(iter.advance_back_by(len + 1), Err(NonZeroUsize::new(1).unwrap()));
|
||||
assert_eq!(iter.advance_back_by(len + 1), Err(NonZero::new(1).unwrap()));
|
||||
assert_eq!(iter.advance_back_by(0), Ok(()));
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use core::iter::*;
|
||||
use core::num::NonZeroUsize;
|
||||
use core::num::NonZero;
|
||||
|
||||
#[test]
|
||||
fn test_iterator_enumerate() {
|
||||
|
@ -66,7 +66,7 @@ fn test_iterator_enumerate_advance_by() {
|
|||
assert_eq!(it.next(), Some((2, &2)));
|
||||
assert_eq!(it.advance_by(2), Ok(()));
|
||||
assert_eq!(it.next(), Some((5, &5)));
|
||||
assert_eq!(it.advance_by(1), Err(NonZeroUsize::new(1).unwrap()));
|
||||
assert_eq!(it.advance_by(1), Err(NonZero::new(1).unwrap()));
|
||||
assert_eq!(it.next(), None);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
use super::*;
|
||||
use core::assert_eq;
|
||||
use core::iter::*;
|
||||
use core::num::NonZeroUsize;
|
||||
use core::num::NonZero;
|
||||
|
||||
#[test]
|
||||
fn test_iterator_flatten() {
|
||||
|
@ -72,8 +72,8 @@ fn test_flatten_advance_by() {
|
|||
assert_eq!(it.advance_back_by(9), Ok(()));
|
||||
assert_eq!(it.next_back(), Some(25));
|
||||
|
||||
assert_eq!(it.advance_by(usize::MAX), Err(NonZeroUsize::new(usize::MAX - 9).unwrap()));
|
||||
assert_eq!(it.advance_back_by(usize::MAX), Err(NonZeroUsize::new(usize::MAX).unwrap()));
|
||||
assert_eq!(it.advance_by(usize::MAX), Err(NonZero::new(usize::MAX - 9).unwrap()));
|
||||
assert_eq!(it.advance_back_by(usize::MAX), Err(NonZero::new(usize::MAX).unwrap()));
|
||||
assert_eq!(it.advance_by(0), Ok(()));
|
||||
assert_eq!(it.advance_back_by(0), Ok(()));
|
||||
assert_eq!(it.size_hint(), (0, Some(0)));
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use core::iter::*;
|
||||
use core::num::NonZeroUsize;
|
||||
use core::num::NonZero;
|
||||
|
||||
use super::Unfuse;
|
||||
|
||||
|
@ -75,14 +75,14 @@ fn test_iterator_skip_nth() {
|
|||
#[test]
|
||||
fn test_skip_advance_by() {
|
||||
assert_eq!((0..0).skip(10).advance_by(0), Ok(()));
|
||||
assert_eq!((0..0).skip(10).advance_by(1), Err(NonZeroUsize::new(1).unwrap()));
|
||||
assert_eq!((0..0).skip(10).advance_by(1), Err(NonZero::new(1).unwrap()));
|
||||
assert_eq!(
|
||||
(0u128..(usize::MAX as u128) + 1).skip(usize::MAX - 10).advance_by(usize::MAX - 5),
|
||||
Err(NonZeroUsize::new(usize::MAX - 16).unwrap())
|
||||
Err(NonZero::new(usize::MAX - 16).unwrap())
|
||||
);
|
||||
assert_eq!((0u128..u128::MAX).skip(usize::MAX - 10).advance_by(20), Ok(()));
|
||||
|
||||
assert_eq!((0..2).skip(1).advance_back_by(10), Err(NonZeroUsize::new(9).unwrap()));
|
||||
assert_eq!((0..2).skip(1).advance_back_by(10), Err(NonZero::new(9).unwrap()));
|
||||
assert_eq!((0..0).skip(1).advance_back_by(0), Ok(()));
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use core::iter::*;
|
||||
use core::num::NonZeroUsize;
|
||||
use core::num::NonZero;
|
||||
|
||||
#[test]
|
||||
fn test_iterator_take() {
|
||||
|
@ -79,23 +79,23 @@ fn test_take_advance_by() {
|
|||
let mut take = (0..10).take(3);
|
||||
assert_eq!(take.advance_by(2), Ok(()));
|
||||
assert_eq!(take.next(), Some(2));
|
||||
assert_eq!(take.advance_by(1), Err(NonZeroUsize::new(1).unwrap()));
|
||||
assert_eq!(take.advance_by(1), Err(NonZero::new(1).unwrap()));
|
||||
|
||||
assert_eq!((0..0).take(10).advance_by(0), Ok(()));
|
||||
assert_eq!((0..0).take(10).advance_by(1), Err(NonZeroUsize::new(1).unwrap()));
|
||||
assert_eq!((0..10).take(4).advance_by(5), Err(NonZeroUsize::new(1).unwrap()));
|
||||
assert_eq!((0..0).take(10).advance_by(1), Err(NonZero::new(1).unwrap()));
|
||||
assert_eq!((0..10).take(4).advance_by(5), Err(NonZero::new(1).unwrap()));
|
||||
|
||||
let mut take = (0..10).take(3);
|
||||
assert_eq!(take.advance_back_by(2), Ok(()));
|
||||
assert_eq!(take.next(), Some(0));
|
||||
assert_eq!(take.advance_back_by(1), Err(NonZeroUsize::new(1).unwrap()));
|
||||
assert_eq!(take.advance_back_by(1), Err(NonZero::new(1).unwrap()));
|
||||
|
||||
assert_eq!((0..2).take(1).advance_back_by(10), Err(NonZeroUsize::new(9).unwrap()));
|
||||
assert_eq!((0..0).take(1).advance_back_by(1), Err(NonZeroUsize::new(1).unwrap()));
|
||||
assert_eq!((0..2).take(1).advance_back_by(10), Err(NonZero::new(9).unwrap()));
|
||||
assert_eq!((0..0).take(1).advance_back_by(1), Err(NonZero::new(1).unwrap()));
|
||||
assert_eq!((0..0).take(1).advance_back_by(0), Ok(()));
|
||||
assert_eq!(
|
||||
(0..usize::MAX).take(100).advance_back_by(usize::MAX),
|
||||
Err(NonZeroUsize::new(usize::MAX - 100).unwrap())
|
||||
Err(NonZero::new(usize::MAX - 100).unwrap())
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue