struct
MapCollectionView
<
Base
:
CollectionType
,
T
>
Inheritance |
CollectionType, SequenceType, _CollectionType, _SequenceType, _Sequence_Type
View Protocol Hierarchy →
|
---|---|
Associated Types |
Type alias inferred.
Type alias inferred.
Type alias inferred.
Type alias inferred. |
Import |
|
Instance Variables
The collection's "past the end" position.
endIndex
is not a valid argument to subscript
, and is always
reachable from startIndex
by zero or more applications of
successor()
.
Declaration
var
endIndex
:
Base
.
Index
{
get
}
The position of the first element in a non-empty collection.
Identical to endIndex
in an empty collection.
Declaration
var
startIndex
:
Base
.
Index
{
get
}
Subscripts
Declaration
subscript
(
position
:
Base
.
Index
) -
>
T
{
get
}
Instance Methods
Return a generator over the elements of this sequence.
Complexity: O(1)
Declaration
func
generate
() -
>
MapSequenceGenerator
<
Base
.
Generator
,
T
>
A
CollectionType
whose elements consist of those in aBase
CollectionType
passed through a transform function returningT
. These elements are computed lazily, each time they're read, by calling the transform function on a base element.