ExternalPropertyMap
public protocol ExternalPropertyMap : PropertyMap
External property maps store data outside the graph.
-
Accesses the
Valuefor a givenKey.Declaration
Swift
subscript(key: Key) -> Value { get set } -
get(_:Extension methodin: ) Declaration
Swift
public func get(_ key: Key, in graph: Graph) -> Value -
set(_:Extension methodin: to: ) Declaration
Swift
public mutating func set(_ key: Key, in graph: inout Graph, to newValue: Value)
View on GitHub
ExternalPropertyMap Protocol Reference