EdgeFilteringCollection
public struct EdgeFilteringCollection<C> : Collection where C : Collection, Underlying.EdgeId == C.Element
A sparse collection that excludes edges based on the user-provided filter.
-
Indices into
self
.Declaration
Swift
public typealias Index = C.Index
-
The elements in
self
.Declaration
Swift
public typealias EdgeId = Underlying.EdgeId
-
The first valid index in
self
.Declaration
Swift
public var startIndex: Index { get }
-
One past the last valid index in
self
.Declaration
Swift
public var endIndex: Index { get }
-
Returns the next valid index in
self
afterindex
. -
Accesses the element at
index
.