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 @@ -2776,25 +2776,20 @@ ${assignmentOperatorComment(x.operator, True)}
2776
2776
public typealias Indices = CountableRange < Int >
2777
2777
public typealias SubSequence = BidirectionalSlice < ${ Self} . Words>
2778
2778
2779
- public var _value: ${ Self}
2779
+ var _value: ${ Self}
2780
2780
2781
- @_transparent
2782
2781
public init( _ value: ${ Self} ) {
2783
2782
self . _value = value
2784
2783
}
2785
2784
2786
- @_transparent
2787
2785
public var count: Int {
2788
2786
return ( ${ bits} + ${ word_bits} - 1 ) / ${ word_bits}
2789
2787
}
2790
2788
2791
- @_transparent
2792
2789
public var startIndex: Int { return 0 }
2793
2790
2794
- @_transparent
2795
2791
public var endIndex: Int { return count }
2796
2792
2797
- @_transparent
2798
2793
public var indices: Indices { return startIndex ..< endIndex }
2799
2794
2800
2795
@_transparent
@@ -2804,7 +2799,6 @@ ${assignmentOperatorComment(x.operator, True)}
2804
2799
public func index( before i: Int) - > Int { return i - 1 }
2805
2800
2806
2801
public subscript( position: Int) - > UInt {
2807
- @_transparent
2808
2802
get {
2809
2803
_precondition ( position >= 0 , " Negative word index " )
2810
2804
_precondition ( position < endIndex, " Word index out of range " )
You can’t perform that action at this time.
0 commit comments