@@ -612,31 +612,31 @@ extern "rust-intrinsic" {
612
612
/// [`AtomicBool::fetch_xor`](../../std/sync/atomic/struct.AtomicBool.html#method.fetch_xor).
613
613
pub fn atomic_xor_relaxed < T > ( dst : * mut T , src : T ) -> T ;
614
614
615
- /// Maximum with the current value using a sized comparison.
615
+ /// Maximum with the current value using a signed comparison.
616
616
///
617
617
/// The stabilized version of this intrinsic is available on the
618
618
/// `std::sync::atomic` signed integer types via the `fetch_max` method by passing
619
619
/// [`Ordering::SeqCst`](../../std/sync/atomic/enum.Ordering.html#variant.SeqCst)
620
620
/// as the `order`. For example,
621
621
/// [`AtomicI32::fetch_max`](../../std/sync/atomic/struct.AtomicI32.html#method.fetch_max).
622
622
pub fn atomic_max < T > ( dst : * mut T , src : T ) -> T ;
623
- /// Maximum with the current value using a sized comparison.
623
+ /// Maximum with the current value using a signed comparison.
624
624
///
625
625
/// The stabilized version of this intrinsic is available on the
626
626
/// `std::sync::atomic` signed integer types via the `fetch_max` method by passing
627
627
/// [`Ordering::Acquire`](../../std/sync/atomic/enum.Ordering.html#variant.Acquire)
628
628
/// as the `order`. For example,
629
629
/// [`AtomicI32::fetch_max`](../../std/sync/atomic/struct.AtomicI32.html#method.fetch_max).
630
630
pub fn atomic_max_acq < T > ( dst : * mut T , src : T ) -> T ;
631
- /// Maximum with the current value using a sized comparison.
631
+ /// Maximum with the current value using a signed comparison.
632
632
///
633
633
/// The stabilized version of this intrinsic is available on the
634
634
/// `std::sync::atomic` signed integer types via the `fetch_max` method by passing
635
635
/// [`Ordering::Release`](../../std/sync/atomic/enum.Ordering.html#variant.Release)
636
636
/// as the `order`. For example,
637
637
/// [`AtomicI32::fetch_max`](../../std/sync/atomic/struct.AtomicI32.html#method.fetch_max).
638
638
pub fn atomic_max_rel < T > ( dst : * mut T , src : T ) -> T ;
639
- /// Maximum with the current value using a sized comparison.
639
+ /// Maximum with the current value using a signed comparison.
640
640
///
641
641
/// The stabilized version of this intrinsic is available on the
642
642
/// `std::sync::atomic` signed integer types via the `fetch_max` method by passing
@@ -653,39 +653,39 @@ extern "rust-intrinsic" {
653
653
/// [`AtomicI32::fetch_max`](../../std/sync/atomic/struct.AtomicI32.html#method.fetch_max).
654
654
pub fn atomic_max_relaxed < T > ( dst : * mut T , src : T ) -> T ;
655
655
656
- /// Minimum with the current value using a sized comparison.
656
+ /// Minimum with the current value using a signed comparison.
657
657
///
658
658
/// The stabilized version of this intrinsic is available on the
659
659
/// `std::sync::atomic` signed integer types via the `fetch_min` method by passing
660
660
/// [`Ordering::SeqCst`](../../std/sync/atomic/enum.Ordering.html#variant.SeqCst)
661
661
/// as the `order`. For example,
662
662
/// [`AtomicI32::fetch_min`](../../std/sync/atomic/struct.AtomicI32.html#method.fetch_min).
663
663
pub fn atomic_min < T > ( dst : * mut T , src : T ) -> T ;
664
- /// Minimum with the current value using a sized comparison.
664
+ /// Minimum with the current value using a signed comparison.
665
665
///
666
666
/// The stabilized version of this intrinsic is available on the
667
667
/// `std::sync::atomic` signed integer types via the `fetch_min` method by passing
668
668
/// [`Ordering::Acquire`](../../std/sync/atomic/enum.Ordering.html#variant.Acquire)
669
669
/// as the `order`. For example,
670
670
/// [`AtomicI32::fetch_min`](../../std/sync/atomic/struct.AtomicI32.html#method.fetch_min).
671
671
pub fn atomic_min_acq < T > ( dst : * mut T , src : T ) -> T ;
672
- /// Minimum with the current value using a sized comparison.
672
+ /// Minimum with the current value using a signed comparison.
673
673
///
674
674
/// The stabilized version of this intrinsic is available on the
675
675
/// `std::sync::atomic` signed integer types via the `fetch_min` method by passing
676
676
/// [`Ordering::Release`](../../std/sync/atomic/enum.Ordering.html#variant.Release)
677
677
/// as the `order`. For example,
678
678
/// [`AtomicI32::fetch_min`](../../std/sync/atomic/struct.AtomicI32.html#method.fetch_min).
679
679
pub fn atomic_min_rel < T > ( dst : * mut T , src : T ) -> T ;
680
- /// Minimum with the current value using a sized comparison.
680
+ /// Minimum with the current value using a signed comparison.
681
681
///
682
682
/// The stabilized version of this intrinsic is available on the
683
683
/// `std::sync::atomic` signed integer types via the `fetch_min` method by passing
684
684
/// [`Ordering::AcqRel`](../../std/sync/atomic/enum.Ordering.html#variant.AcqRel)
685
685
/// as the `order`. For example,
686
686
/// [`AtomicI32::fetch_min`](../../std/sync/atomic/struct.AtomicI32.html#method.fetch_min).
687
687
pub fn atomic_min_acqrel < T > ( dst : * mut T , src : T ) -> T ;
688
- /// Minimum with the current value using a sized comparison.
688
+ /// Minimum with the current value using a signed comparison.
689
689
///
690
690
/// The stabilized version of this intrinsic is available on the
691
691
/// `std::sync::atomic` signed integer types via the `fetch_min` method by passing
@@ -694,39 +694,39 @@ extern "rust-intrinsic" {
694
694
/// [`AtomicI32::fetch_min`](../../std/sync/atomic/struct.AtomicI32.html#method.fetch_min).
695
695
pub fn atomic_min_relaxed < T > ( dst : * mut T , src : T ) -> T ;
696
696
697
- /// Minimum with the current value using an unsized comparison.
697
+ /// Minimum with the current value using an unsigned comparison.
698
698
///
699
699
/// The stabilized version of this intrinsic is available on the
700
700
/// `std::sync::atomic` unsigned integer types via the `fetch_min` method by passing
701
701
/// [`Ordering::SeqCst`](../../std/sync/atomic/enum.Ordering.html#variant.SeqCst)
702
702
/// as the `order`. For example,
703
703
/// [`AtomicU32::fetch_min`](../../std/sync/atomic/struct.AtomicU32.html#method.fetch_min).
704
704
pub fn atomic_umin < T > ( dst : * mut T , src : T ) -> T ;
705
- /// Minimum with the current value using an unsized comparison.
705
+ /// Minimum with the current value using an unsigned comparison.
706
706
///
707
707
/// The stabilized version of this intrinsic is available on the
708
708
/// `std::sync::atomic` unsigned integer types via the `fetch_min` method by passing
709
709
/// [`Ordering::Acquire`](../../std/sync/atomic/enum.Ordering.html#variant.Acquire)
710
710
/// as the `order`. For example,
711
711
/// [`AtomicU32::fetch_min`](../../std/sync/atomic/struct.AtomicU32.html#method.fetch_min).
712
712
pub fn atomic_umin_acq < T > ( dst : * mut T , src : T ) -> T ;
713
- /// Minimum with the current value using an unsized comparison.
713
+ /// Minimum with the current value using an unsigned comparison.
714
714
///
715
715
/// The stabilized version of this intrinsic is available on the
716
716
/// `std::sync::atomic` unsigned integer types via the `fetch_min` method by passing
717
717
/// [`Ordering::Release`](../../std/sync/atomic/enum.Ordering.html#variant.Release)
718
718
/// as the `order`. For example,
719
719
/// [`AtomicU32::fetch_min`](../../std/sync/atomic/struct.AtomicU32.html#method.fetch_min).
720
720
pub fn atomic_umin_rel < T > ( dst : * mut T , src : T ) -> T ;
721
- /// Minimum with the current value using an unsized comparison.
721
+ /// Minimum with the current value using an unsigned comparison.
722
722
///
723
723
/// The stabilized version of this intrinsic is available on the
724
724
/// `std::sync::atomic` unsigned integer types via the `fetch_min` method by passing
725
725
/// [`Ordering::AcqRel`](../../std/sync/atomic/enum.Ordering.html#variant.AcqRel)
726
726
/// as the `order`. For example,
727
727
/// [`AtomicU32::fetch_min`](../../std/sync/atomic/struct.AtomicU32.html#method.fetch_min).
728
728
pub fn atomic_umin_acqrel < T > ( dst : * mut T , src : T ) -> T ;
729
- /// Minimum with the current value using an unsized comparison.
729
+ /// Minimum with the current value using an unsigned comparison.
730
730
///
731
731
/// The stabilized version of this intrinsic is available on the
732
732
/// `std::sync::atomic` unsigned integer types via the `fetch_min` method by passing
@@ -735,39 +735,39 @@ extern "rust-intrinsic" {
735
735
/// [`AtomicU32::fetch_min`](../../std/sync/atomic/struct.AtomicU32.html#method.fetch_min).
736
736
pub fn atomic_umin_relaxed < T > ( dst : * mut T , src : T ) -> T ;
737
737
738
- /// Maximum with the current value using an unsized comparison.
738
+ /// Maximum with the current value using an unsigned comparison.
739
739
///
740
740
/// The stabilized version of this intrinsic is available on the
741
741
/// `std::sync::atomic` unsigned integer types via the `fetch_max` method by passing
742
742
/// [`Ordering::SeqCst`](../../std/sync/atomic/enum.Ordering.html#variant.SeqCst)
743
743
/// as the `order`. For example,
744
744
/// [`AtomicU32::fetch_max`](../../std/sync/atomic/struct.AtomicU32.html#method.fetch_max).
745
745
pub fn atomic_umax < T > ( dst : * mut T , src : T ) -> T ;
746
- /// Maximum with the current value using an unsized comparison.
746
+ /// Maximum with the current value using an unsigned comparison.
747
747
///
748
748
/// The stabilized version of this intrinsic is available on the
749
749
/// `std::sync::atomic` unsigned integer types via the `fetch_max` method by passing
750
750
/// [`Ordering::Acquire`](../../std/sync/atomic/enum.Ordering.html#variant.Acquire)
751
751
/// as the `order`. For example,
752
752
/// [`AtomicU32::fetch_max`](../../std/sync/atomic/struct.AtomicU32.html#method.fetch_max).
753
753
pub fn atomic_umax_acq < T > ( dst : * mut T , src : T ) -> T ;
754
- /// Maximum with the current value using an unsized comparison.
754
+ /// Maximum with the current value using an unsigned comparison.
755
755
///
756
756
/// The stabilized version of this intrinsic is available on the
757
757
/// `std::sync::atomic` unsigned integer types via the `fetch_max` method by passing
758
758
/// [`Ordering::Release`](../../std/sync/atomic/enum.Ordering.html#variant.Release)
759
759
/// as the `order`. For example,
760
760
/// [`AtomicU32::fetch_max`](../../std/sync/atomic/struct.AtomicU32.html#method.fetch_max).
761
761
pub fn atomic_umax_rel < T > ( dst : * mut T , src : T ) -> T ;
762
- /// Maximum with the current value using an unsized comparison.
762
+ /// Maximum with the current value using an unsigned comparison.
763
763
///
764
764
/// The stabilized version of this intrinsic is available on the
765
765
/// `std::sync::atomic` unsigned integer types via the `fetch_max` method by passing
766
766
/// [`Ordering::AcqRel`](../../std/sync/atomic/enum.Ordering.html#variant.AcqRel)
767
767
/// as the `order`. For example,
768
768
/// [`AtomicU32::fetch_max`](../../std/sync/atomic/struct.AtomicU32.html#method.fetch_max).
769
769
pub fn atomic_umax_acqrel < T > ( dst : * mut T , src : T ) -> T ;
770
- /// Maximum with the current value using an unsized comparison.
770
+ /// Maximum with the current value using an unsigned comparison.
771
771
///
772
772
/// The stabilized version of this intrinsic is available on the
773
773
/// `std::sync::atomic` unsigned integer types via the `fetch_max` method by passing
0 commit comments