File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -435,6 +435,12 @@ public struct OpaquePointer : ... {
435
435
method instead.
436
436
437
437
``` diff
438
+ extension Repeated {
439
+ - public init(count: Int, repeatedValue: Element)
440
+ }
441
+ + /// Return a collection containing `n` repetitions of `elementInstance`.
442
+ + public func repeatElement<T>(element: T, count n: Int) -> Repeated<T>
443
+
438
444
public struct LazyMapSequence<Base : Sequence, Element> : ... {
439
445
// Call `.lazy.map` on the sequence instead.
440
446
- public init(_ base: Base, transform: (Base.Generator.Element) -> Element)
@@ -848,12 +854,6 @@ public struct OpaquePointer : ... {
848
854
- public struct Repeat<Element> : ... { ... }
849
855
+ public struct Repeated<Element> : ... { ... }
850
856
851
- extension Repeated {
852
- - public init(count: Int, repeatedValue: Element)
853
- }
854
- + /// Return a collection containing `n` repetitions of `elementInstance`.
855
- + public func repeatElement<T>(element: T, count n: Int) -> Repeated<T>
856
-
857
857
public struct StaticString : ... {
858
858
- public var byteSize: Int { get }
859
859
+ public var utf8CodeUnitCount: Int { get }
You can’t perform that action at this time.
0 commit comments