@@ -212,8 +212,6 @@ extension InlineArray where Element: ~Copyable {
212
212
///
213
213
/// - Parameter body: A closure that returns an owned `Element` to emplace at
214
214
/// the passed in index.
215
- ///
216
- /// - Complexity: O(*n*), where *n* is the number of elements in the array.
217
215
@available ( SwiftStdlib 6 . 2 , * )
218
216
@_alwaysEmitIntoClient
219
217
public init < E: Error > ( _ body: ( Index ) throws ( E ) -> Element ) throws ( E) {
@@ -260,8 +258,6 @@ extension InlineArray where Element: ~Copyable {
260
258
/// - next: A closure that takes an immutable borrow reference to the
261
259
/// preceding element, and returns an owned `Element` instance to emplace
262
260
/// into the array.
263
- ///
264
- /// - Complexity: O(*n*), where *n* is the number of elements in the array.
265
261
@available ( SwiftStdlib 6 . 2 , * )
266
262
@_alwaysEmitIntoClient
267
263
public init< E : Error> (
@@ -313,8 +309,6 @@ extension InlineArray where Element: Copyable {
313
309
/// Initializes every element in this array to a copy of the given value.
314
310
///
315
311
/// - Parameter value: The instance to initialize this array with.
316
- ///
317
- /// - Complexity: O(*n*), where *n* is the number of elements in the array.
318
312
@available ( SwiftStdlib 6 . 2 , * )
319
313
@_alwaysEmitIntoClient
320
314
public init ( repeating value: Element ) {
@@ -525,7 +519,7 @@ extension InlineArray where Element: ~Copyable {
525
519
}
526
520
527
521
//===----------------------------------------------------------------------===//
528
- // MARK: Span
522
+ // MARK: - Span APIs
529
523
//===----------------------------------------------------------------------===//
530
524
531
525
@available ( SwiftStdlib 6 . 2 , * )
0 commit comments