struct
EmptyGenerator
<
T
>
Inheritance |
GeneratorType, SequenceType, _SequenceType, _Sequence_Type
View Protocol Hierarchy →
|
---|---|
Associated Types |
Type alias inferred.
Type alias inferred. |
Import |
|
Initializers
Construct an instance
Declaration
init
()
Instance Methods
EmptyGenerator
is also a SequenceType
, so it generate
's
a copy of itself
Declaration
func
generate
() -
>
EmptyGenerator
<
T
>
Return nil
, indicating that there are no more elements.
Declaration
mutating
func
next
() -
>
T
?
A generator that never produces an element.
See also:
EmptyCollection<T>
.