@@ -373,39 +373,39 @@ extern "rust-intrinsic" {
373
373
/// `std::sync::atomic` types via the `fetch_add` method by passing
374
374
/// [`Ordering::SeqCst`](crate::sync::atomic::Ordering::SeqCst)
375
375
/// as the `order`. For example,
376
- /// [`AtomicIsize::fetch_add`](../../std/ sync/ atomic/struct. AtomicIsize.html#method. fetch_add).
376
+ /// [`AtomicIsize::fetch_add`](crate:: sync:: atomic:: AtomicIsize:: fetch_add).
377
377
pub fn atomic_xadd < T : Copy > ( dst : * mut T , src : T ) -> T ;
378
378
/// Adds to the current value, returning the previous value.
379
379
///
380
380
/// The stabilized version of this intrinsic is available on the
381
381
/// `std::sync::atomic` types via the `fetch_add` method by passing
382
382
/// [`Ordering::Acquire`](crate::sync::atomic::Ordering::Acquire)
383
383
/// as the `order`. For example,
384
- /// [`AtomicIsize::fetch_add`](../../std/ sync/ atomic/struct. AtomicIsize.html#method. fetch_add).
384
+ /// [`AtomicIsize::fetch_add`](crate:: sync:: atomic:: AtomicIsize:: fetch_add).
385
385
pub fn atomic_xadd_acq < T : Copy > ( dst : * mut T , src : T ) -> T ;
386
386
/// Adds to the current value, returning the previous value.
387
387
///
388
388
/// The stabilized version of this intrinsic is available on the
389
389
/// `std::sync::atomic` types via the `fetch_add` method by passing
390
390
/// [`Ordering::Release`](crate::sync::atomic::Ordering::Release)
391
391
/// as the `order`. For example,
392
- /// [`AtomicIsize::fetch_add`](../../std/ sync/ atomic/struct. AtomicIsize.html#method. fetch_add).
392
+ /// [`AtomicIsize::fetch_add`](crate:: sync:: atomic:: AtomicIsize:: fetch_add).
393
393
pub fn atomic_xadd_rel < T : Copy > ( dst : * mut T , src : T ) -> T ;
394
394
/// Adds to the current value, returning the previous value.
395
395
///
396
396
/// The stabilized version of this intrinsic is available on the
397
397
/// `std::sync::atomic` types via the `fetch_add` method by passing
398
398
/// [`Ordering::AcqRel`](crate::sync::atomic::Ordering::AcqRel)
399
399
/// as the `order`. For example,
400
- /// [`AtomicIsize::fetch_add`](../../std/ sync/ atomic/struct. AtomicIsize.html#method. fetch_add).
400
+ /// [`AtomicIsize::fetch_add`](crate:: sync:: atomic:: AtomicIsize:: fetch_add).
401
401
pub fn atomic_xadd_acqrel < T : Copy > ( dst : * mut T , src : T ) -> T ;
402
402
/// Adds to the current value, returning the previous value.
403
403
///
404
404
/// The stabilized version of this intrinsic is available on the
405
405
/// `std::sync::atomic` types via the `fetch_add` method by passing
406
406
/// [`Ordering::Relaxed`](crate::sync::atomic::Ordering::Relaxed)
407
407
/// as the `order`. For example,
408
- /// [`AtomicIsize::fetch_add`](../../std/ sync/ atomic/struct. AtomicIsize.html#method. fetch_add).
408
+ /// [`AtomicIsize::fetch_add`](crate:: sync:: atomic:: AtomicIsize:: fetch_add).
409
409
pub fn atomic_xadd_relaxed < T : Copy > ( dst : * mut T , src : T ) -> T ;
410
410
411
411
/// Subtract from the current value, returning the previous value.
@@ -414,39 +414,39 @@ extern "rust-intrinsic" {
414
414
/// `std::sync::atomic` types via the `fetch_sub` method by passing
415
415
/// [`Ordering::SeqCst`](crate::sync::atomic::Ordering::SeqCst)
416
416
/// as the `order`. For example,
417
- /// [`AtomicIsize::fetch_sub`](../../std/ sync/ atomic/struct. AtomicIsize.html#method. fetch_sub).
417
+ /// [`AtomicIsize::fetch_sub`](crate:: sync:: atomic:: AtomicIsize:: fetch_sub).
418
418
pub fn atomic_xsub < T : Copy > ( dst : * mut T , src : T ) -> T ;
419
419
/// Subtract from the current value, returning the previous value.
420
420
///
421
421
/// The stabilized version of this intrinsic is available on the
422
422
/// `std::sync::atomic` types via the `fetch_sub` method by passing
423
423
/// [`Ordering::Acquire`](crate::sync::atomic::Ordering::Acquire)
424
424
/// as the `order`. For example,
425
- /// [`AtomicIsize::fetch_sub`](../../std/ sync/ atomic/struct. AtomicIsize.html#method. fetch_sub).
425
+ /// [`AtomicIsize::fetch_sub`](crate:: sync:: atomic:: AtomicIsize:: fetch_sub).
426
426
pub fn atomic_xsub_acq < T : Copy > ( dst : * mut T , src : T ) -> T ;
427
427
/// Subtract from the current value, returning the previous value.
428
428
///
429
429
/// The stabilized version of this intrinsic is available on the
430
430
/// `std::sync::atomic` types via the `fetch_sub` method by passing
431
431
/// [`Ordering::Release`](crate::sync::atomic::Ordering::Release)
432
432
/// as the `order`. For example,
433
- /// [`AtomicIsize::fetch_sub`](../../std/ sync/ atomic/struct. AtomicIsize.html#method. fetch_sub).
433
+ /// [`AtomicIsize::fetch_sub`](crate:: sync:: atomic:: AtomicIsize:: fetch_sub).
434
434
pub fn atomic_xsub_rel < T : Copy > ( dst : * mut T , src : T ) -> T ;
435
435
/// Subtract from the current value, returning the previous value.
436
436
///
437
437
/// The stabilized version of this intrinsic is available on the
438
438
/// `std::sync::atomic` types via the `fetch_sub` method by passing
439
439
/// [`Ordering::AcqRel`](crate::sync::atomic::Ordering::AcqRel)
440
440
/// as the `order`. For example,
441
- /// [`AtomicIsize::fetch_sub`](../../std/ sync/ atomic/struct. AtomicIsize.html#method. fetch_sub).
441
+ /// [`AtomicIsize::fetch_sub`](crate:: sync:: atomic:: AtomicIsize:: fetch_sub).
442
442
pub fn atomic_xsub_acqrel < T : Copy > ( dst : * mut T , src : T ) -> T ;
443
443
/// Subtract from the current value, returning the previous value.
444
444
///
445
445
/// The stabilized version of this intrinsic is available on the
446
446
/// `std::sync::atomic` types via the `fetch_sub` method by passing
447
447
/// [`Ordering::Relaxed`](crate::sync::atomic::Ordering::Relaxed)
448
448
/// as the `order`. For example,
449
- /// [`AtomicIsize::fetch_sub`](../../std/ sync/ atomic/struct. AtomicIsize.html#method. fetch_sub).
449
+ /// [`AtomicIsize::fetch_sub`](crate:: sync:: atomic:: AtomicIsize:: fetch_sub).
450
450
pub fn atomic_xsub_relaxed < T : Copy > ( dst : * mut T , src : T ) -> T ;
451
451
452
452
/// Bitwise and with the current value, returning the previous value.
0 commit comments