@@ -619,39 +619,39 @@ extern "rust-intrinsic" {
619
619
/// `std::sync::atomic` signed integer types via the `fetch_max` method by passing
620
620
/// [`Ordering::SeqCst`](crate::sync::atomic::Ordering::SeqCst)
621
621
/// as the `order`. For example,
622
- /// [`AtomicI32::fetch_max`](../../std/ sync/ atomic/struct. AtomicI32.html#method. fetch_max).
622
+ /// [`AtomicI32::fetch_max`](crate:: sync:: atomic:: AtomicI32:: fetch_max).
623
623
pub fn atomic_max < T : Copy > ( dst : * mut T , src : T ) -> T ;
624
624
/// Maximum with the current value using a signed comparison.
625
625
///
626
626
/// The stabilized version of this intrinsic is available on the
627
627
/// `std::sync::atomic` signed integer types via the `fetch_max` method by passing
628
628
/// [`Ordering::Acquire`](crate::sync::atomic::Ordering::Acquire)
629
629
/// as the `order`. For example,
630
- /// [`AtomicI32::fetch_max`](../../std/ sync/ atomic/struct. AtomicI32.html#method. fetch_max).
630
+ /// [`AtomicI32::fetch_max`](crate:: sync:: atomic:: AtomicI32:: fetch_max).
631
631
pub fn atomic_max_acq < T : Copy > ( dst : * mut T , src : T ) -> T ;
632
632
/// Maximum with the current value using a signed comparison.
633
633
///
634
634
/// The stabilized version of this intrinsic is available on the
635
635
/// `std::sync::atomic` signed integer types via the `fetch_max` method by passing
636
636
/// [`Ordering::Release`](crate::sync::atomic::Ordering::Release)
637
637
/// as the `order`. For example,
638
- /// [`AtomicI32::fetch_max`](../../std/ sync/ atomic/struct. AtomicI32.html#method. fetch_max).
638
+ /// [`AtomicI32::fetch_max`](crate:: sync:: atomic:: AtomicI32:: fetch_max).
639
639
pub fn atomic_max_rel < T : Copy > ( dst : * mut T , src : T ) -> T ;
640
640
/// Maximum with the current value using a signed comparison.
641
641
///
642
642
/// The stabilized version of this intrinsic is available on the
643
643
/// `std::sync::atomic` signed integer types via the `fetch_max` method by passing
644
644
/// [`Ordering::AcqRel`](crate::sync::atomic::Ordering::AcqRel)
645
645
/// as the `order`. For example,
646
- /// [`AtomicI32::fetch_max`](../../std/ sync/ atomic/struct. AtomicI32.html#method. fetch_max).
646
+ /// [`AtomicI32::fetch_max`](crate:: sync:: atomic:: AtomicI32:: fetch_max).
647
647
pub fn atomic_max_acqrel < T : Copy > ( dst : * mut T , src : T ) -> T ;
648
648
/// Maximum with the current value.
649
649
///
650
650
/// The stabilized version of this intrinsic is available on the
651
651
/// `std::sync::atomic` signed integer types via the `fetch_max` method by passing
652
652
/// [`Ordering::Relaxed`](crate::sync::atomic::Ordering::Relaxed)
653
653
/// as the `order`. For example,
654
- /// [`AtomicI32::fetch_max`](../../std/ sync/ atomic/struct. AtomicI32.html#method. fetch_max).
654
+ /// [`AtomicI32::fetch_max`](crate:: sync:: atomic:: AtomicI32:: fetch_max).
655
655
pub fn atomic_max_relaxed < T : Copy > ( dst : * mut T , src : T ) -> T ;
656
656
657
657
/// Minimum with the current value using a signed comparison.
@@ -660,39 +660,39 @@ extern "rust-intrinsic" {
660
660
/// `std::sync::atomic` signed integer types via the `fetch_min` method by passing
661
661
/// [`Ordering::SeqCst`](crate::sync::atomic::Ordering::SeqCst)
662
662
/// as the `order`. For example,
663
- /// [`AtomicI32::fetch_min`](../../std/ sync/ atomic/struct. AtomicI32.html#method. fetch_min).
663
+ /// [`AtomicI32::fetch_min`](crate:: sync:: atomic:: AtomicI32:: fetch_min).
664
664
pub fn atomic_min < T : Copy > ( dst : * mut T , src : T ) -> T ;
665
665
/// Minimum with the current value using a signed comparison.
666
666
///
667
667
/// The stabilized version of this intrinsic is available on the
668
668
/// `std::sync::atomic` signed integer types via the `fetch_min` method by passing
669
669
/// [`Ordering::Acquire`](crate::sync::atomic::Ordering::Acquire)
670
670
/// as the `order`. For example,
671
- /// [`AtomicI32::fetch_min`](../../std/ sync/ atomic/struct. AtomicI32.html#method. fetch_min).
671
+ /// [`AtomicI32::fetch_min`](crate:: sync:: atomic:: AtomicI32:: fetch_min).
672
672
pub fn atomic_min_acq < T : Copy > ( dst : * mut T , src : T ) -> T ;
673
673
/// Minimum with the current value using a signed comparison.
674
674
///
675
675
/// The stabilized version of this intrinsic is available on the
676
676
/// `std::sync::atomic` signed integer types via the `fetch_min` method by passing
677
677
/// [`Ordering::Release`](crate::sync::atomic::Ordering::Release)
678
678
/// as the `order`. For example,
679
- /// [`AtomicI32::fetch_min`](../../std/ sync/ atomic/struct. AtomicI32.html#method. fetch_min).
679
+ /// [`AtomicI32::fetch_min`](crate:: sync:: atomic:: AtomicI32:: fetch_min).
680
680
pub fn atomic_min_rel < T : Copy > ( dst : * mut T , src : T ) -> T ;
681
681
/// Minimum with the current value using a signed comparison.
682
682
///
683
683
/// The stabilized version of this intrinsic is available on the
684
684
/// `std::sync::atomic` signed integer types via the `fetch_min` method by passing
685
685
/// [`Ordering::AcqRel`](crate::sync::atomic::Ordering::AcqRel)
686
686
/// as the `order`. For example,
687
- /// [`AtomicI32::fetch_min`](../../std/ sync/ atomic/struct. AtomicI32.html#method. fetch_min).
687
+ /// [`AtomicI32::fetch_min`](crate:: sync:: atomic:: AtomicI32:: fetch_min).
688
688
pub fn atomic_min_acqrel < T : Copy > ( dst : * mut T , src : T ) -> T ;
689
689
/// Minimum with the current value using a signed comparison.
690
690
///
691
691
/// The stabilized version of this intrinsic is available on the
692
692
/// `std::sync::atomic` signed integer types via the `fetch_min` method by passing
693
693
/// [`Ordering::Relaxed`](crate::sync::atomic::Ordering::Relaxed)
694
694
/// as the `order`. For example,
695
- /// [`AtomicI32::fetch_min`](../../std/ sync/ atomic/struct. AtomicI32.html#method. fetch_min).
695
+ /// [`AtomicI32::fetch_min`](crate:: sync:: atomic:: AtomicI32:: fetch_min).
696
696
pub fn atomic_min_relaxed < T : Copy > ( dst : * mut T , src : T ) -> T ;
697
697
698
698
/// Minimum with the current value using an unsigned comparison.
0 commit comments