File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -2744,25 +2744,20 @@ ${assignmentOperatorComment(x.operator, True)}
2744
2744
public typealias Indices = CountableRange < Int >
2745
2745
public typealias SubSequence = BidirectionalSlice < ${ Self} . Words>
2746
2746
2747
- public var _value: ${ Self}
2747
+ var _value: ${ Self}
2748
2748
2749
- @_transparent
2750
2749
public init( _ value: ${ Self} ) {
2751
2750
self . _value = value
2752
2751
}
2753
2752
2754
- @_transparent
2755
2753
public var count: Int {
2756
2754
return ( ${ bits} + ${ word_bits} - 1 ) / ${ word_bits}
2757
2755
}
2758
2756
2759
- @_transparent
2760
2757
public var startIndex: Int { return 0 }
2761
2758
2762
- @_transparent
2763
2759
public var endIndex: Int { return count }
2764
2760
2765
- @_transparent
2766
2761
public var indices: Indices { return startIndex ..< endIndex }
2767
2762
2768
2763
@_transparent
@@ -2772,7 +2767,6 @@ ${assignmentOperatorComment(x.operator, True)}
2772
2767
public func index( before i: Int) - > Int { return i - 1 }
2773
2768
2774
2769
public subscript( position: Int) - > UInt {
2775
- @_transparent
2776
2770
get {
2777
2771
_precondition ( position >= 0 , " Negative word index " )
2778
2772
_precondition ( position < endIndex, " Word index out of range " )
You can’t perform that action at this time.
0 commit comments