File tree Expand file tree Collapse file tree 1 file changed +1
-16
lines changed Expand file tree Collapse file tree 1 file changed +1
-16
lines changed Original file line number Diff line number Diff line change 1
- //===--- Arrays .swift.gyb - ------------------------------------*- swift -*-===//
1
+ //===--- ArrayShared .swift ------------------------------------*- swift -*-===//
2
2
//
3
3
// This source file is part of the Swift.org open source project
4
4
//
8
8
// See https://swift.org/LICENSE.txt for license information
9
9
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10
10
//
11
- //===----------------------------------------------------------------------===//
12
- //
13
- // Three generic, mutable array-like types with value semantics.
14
- //
15
- // - `ContiguousArray<Element>` is a fast, contiguous array of `Element` with
16
- // a known backing store.
17
- //
18
- // - `ArraySlice<Element>` presents an arbitrary subsequence of some
19
- // contiguous sequence of `Element`s.
20
- //
21
- // - `Array<Element>` is like `ContiguousArray<Element>` when `Element` is not
22
- // a reference type or an Objective-C existential. Otherwise, it may use
23
- // an `NSArray` bridged from Cocoa for storage.
24
- //
25
- //===----------------------------------------------------------------------===//
26
11
27
12
/// This type is used as a result of the _checkSubscript call to associate the
28
13
/// call with the array access call it guards.
You can’t perform that action at this time.
0 commit comments