@@ -486,27 +486,27 @@ extension ${Self} : CustomPlaygroundQuickLookable {
486
486
}
487
487
}
488
488
489
- /// - Note: Strideable's implementation is potentially less efficient and cannot
490
- /// handle misaligned pointers.
489
+ // - Note: Strideable's implementation is potentially less efficient and cannot
490
+ // handle misaligned pointers.
491
491
@_transparent
492
492
public func == < Pointee> (
493
493
lhs: ${ Self} < Pointee> , rhs: ${ Self} < Pointee>
494
494
) - > Bool {
495
495
return Bool ( Builtin . cmp_eq_RawPointer ( lhs. _rawValue, rhs. _rawValue) )
496
496
}
497
497
498
- /// - Note: Strideable's implementation is potentially less efficient and cannot
499
- /// handle misaligned pointers.
500
- ///
501
- /// - Note: This is an unsigned comparison unlike Strideable's implementation.
498
+ // - Note: Strideable's implementation is potentially less efficient and cannot
499
+ // handle misaligned pointers.
500
+ //
501
+ // - Note: This is an unsigned comparison unlike Strideable's implementation.
502
502
@_transparent
503
503
public func < < Pointee> ( lhs: ${ Self} < Pointee> , rhs: ${ Self} < Pointee> ) - > Bool {
504
504
return Bool ( Builtin . cmp_ult_RawPointer ( lhs. _rawValue, rhs. _rawValue) )
505
505
}
506
506
507
- /// - Note: The following family of operator overloads are redundant
508
- /// with Strideable. However, optimizer improvements are needed
509
- /// before they can be removed without affecting performance.
507
+ // - Note: The following family of operator overloads are redundant
508
+ // with Strideable. However, optimizer improvements are needed
509
+ // before they can be removed without affecting performance.
510
510
511
511
/// - Precondition: The result is within bounds of the same allocation.
512
512
@_transparent
0 commit comments