@@ -422,35 +422,35 @@ pub fn Int64::lxor(self : Int64, other : Int64) -> Int64 {
422
422
}
423
423
424
424
///|
425
- /// @alert deprecated "Use infix operator `<<` instead"
425
+ # deprecated( "Use infix operator `<<` instead" )
426
426
#coverage.skip
427
427
pub fn Int64 ::lsl (self : Int64 , other : Int ) -> Int64 {
428
428
MyInt64 ::from_int64 (self ).lsl (other ).to_int64 ()
429
429
}
430
430
431
431
///|
432
- /// @alert deprecated "Use infix operator `<<` instead"
432
+ # deprecated( "Use infix operator `<<` instead" )
433
433
#coverage.skip
434
434
pub fn Int64 ::shl (self : Int64 , other : Int ) -> Int64 {
435
435
MyInt64 ::from_int64 (self ).lsl (other ).to_int64 ()
436
436
}
437
437
438
438
///|
439
- /// @alert deprecated "Use UInt64 type and infix operator `>>` instead"
439
+ # deprecated( "Use UInt64 type and infix operator `>>` instead" )
440
440
#coverage.skip
441
441
pub fn Int64 ::lsr (self : Int64 , other : Int ) -> Int64 {
442
442
MyInt64 ::from_int64 (self ).lsr (other ).to_int64 ()
443
443
}
444
444
445
445
///|
446
- /// @alert deprecated "Use infix operator `>>` instead"
446
+ # deprecated( "Use infix operator `>>` instead" )
447
447
#coverage.skip
448
448
pub fn Int64 ::shr (self : Int64 , other : Int ) -> Int64 {
449
449
MyInt64 ::from_int64 (self ).asr (other ).to_int64 ()
450
450
}
451
451
452
452
///|
453
- /// @alert deprecated "Use infix operator `>>` instead"
453
+ # deprecated( "Use infix operator `>>` instead" )
454
454
#coverage.skip
455
455
pub fn Int64 ::asr (self : Int64 , other : Int ) -> Int64 {
456
456
MyInt64 ::from_int64 (self ).asr (other ).to_int64 ()
@@ -557,7 +557,7 @@ pub fn UInt16::to_int64(self : UInt16) -> Int64 {
557
557
}
558
558
559
559
///|
560
- /// @alert deprecated "Use `reinterpret_as_int64` instead"
560
+ # deprecated( "Use `reinterpret_as_int64` instead" )
561
561
#coverage.skip
562
562
pub fn Double ::reinterpret_as_i64 (self : Double ) -> Int64 {
563
563
MyInt64 ::reinterpret_double (self ).to_int64 ()
@@ -569,7 +569,7 @@ pub fn Double::reinterpret_as_int64(self : Double) -> Int64 {
569
569
}
570
570
571
571
///|
572
- /// @alert deprecated "Use `reinterpret_as_uint64` instead"
572
+ # deprecated( "Use `reinterpret_as_uint64` instead" )
573
573
#coverage.skip
574
574
pub fn Double ::reinterpret_as_u64 (self : Double ) -> UInt64 {
575
575
MyInt64 ::reinterpret_double (self ).to_uint64 ()
@@ -597,7 +597,7 @@ fn MyInt64::to_uint64(self : MyInt64) -> UInt64 = "%identity"
597
597
fn MyInt64 ::from_uint64 (value : UInt64 ) -> MyInt64 = "%identity"
598
598
599
599
///|
600
- /// @alert deprecated "Use `reinterpret_as_uint64` instead"
600
+ # deprecated( "Use `reinterpret_as_uint64` instead" )
601
601
#coverage.skip
602
602
pub fn Int64 ::to_uint64 (self : Int64 ) -> UInt64 = "%identity"
603
603
@@ -630,7 +630,7 @@ pub fn UInt64::op_mod(self : UInt64, other : UInt64) -> UInt64 {
630
630
}
631
631
632
632
///|
633
- /// @alert deprecated "Use reinterpret_as_int64 instead"
633
+ # deprecated( "Use reinterpret_as_int64 instead" )
634
634
#coverage.skip
635
635
pub fn UInt64 ::to_int64 (self : UInt64 ) -> Int64 = "%identity"
636
636
@@ -688,28 +688,28 @@ pub fn UInt64::lnot(self : UInt64) -> UInt64 {
688
688
}
689
689
690
690
///|
691
- /// @alert deprecated "Use infix operator `<<` instead"
691
+ # deprecated( "Use infix operator `<<` instead" )
692
692
#coverage.skip
693
693
pub fn UInt64 ::lsl (self : UInt64 , shift : Int ) -> UInt64 {
694
694
MyInt64 ::lsl (MyInt64 ::from_uint64 (self ), shift ).to_uint64 ()
695
695
}
696
696
697
697
///|
698
- /// @alert deprecated "Use infix operator `<<` instead"
698
+ # deprecated( "Use infix operator `<<` instead" )
699
699
#coverage.skip
700
700
pub fn UInt64 ::lsr (self : UInt64 , shift : Int ) -> UInt64 {
701
701
MyInt64 ::lsr (MyInt64 ::from_uint64 (self ), shift ).to_uint64 ()
702
702
}
703
703
704
704
///|
705
- /// @alert deprecated "Use infix operator `>>` instead"
705
+ # deprecated( "Use infix operator `>>` instead" )
706
706
#coverage.skip
707
707
pub fn UInt64 ::shl (self : UInt64 , shift : Int ) -> UInt64 {
708
708
MyInt64 ::lsl (MyInt64 ::from_uint64 (self ), shift ).to_uint64 ()
709
709
}
710
710
711
711
///|
712
- /// @alert deprecated "Use infix operator `>>` instead"
712
+ # deprecated( "Use infix operator `>>` instead" )
713
713
#coverage.skip
714
714
pub fn UInt64 ::shr (self : UInt64 , shift : Int ) -> UInt64 {
715
715
MyInt64 ::lsr (MyInt64 ::from_uint64 (self ), shift ).to_uint64 ()
0 commit comments