Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ public struct Attribute<Value> {
public var graph: AGGraph { get }
public var subgraph: AGSubgraph { get }

public var value: Value { unsafeAddress set }
public var value: Value {
unsafeAddress
nonmutating set
}
public var valueState: AGValueState { get }
public func valueAndFlags(options: AGValueOptions = []) -> (value: Value, flags: AGChangedValueFlags)
public func changedValue(options: AGValueOptions = []) -> (value: Value, changed: Bool)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ public struct Attribute<Value> {
public var graph: AGGraph { get }
public var subgraph: AGSubgraph { get }

public var value: Value { unsafeAddress set }
public var value: Value {
unsafeAddress
nonmutating set
}
public var valueState: AGValueState { get }
public func valueAndFlags(options: AGValueOptions = []) -> (value: Value, flags: AGChangedValueFlags)
public func changedValue(options: AGValueOptions = []) -> (value: Value, changed: Bool)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ public struct Attribute<Value> {
public var graph: AGGraph { get }
public var subgraph: AGSubgraph { get }

public var value: Value { unsafeAddress set }
public var value: Value {
unsafeAddress
nonmutating set
}
public var valueState: AGValueState { get }
public func valueAndFlags(options: AGValueOptions = []) -> (value: Value, flags: AGChangedValueFlags)
public func changedValue(options: AGValueOptions = []) -> (value: Value, changed: Bool)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ public struct Attribute<Value> {
public var graph: AGGraph { get }
public var subgraph: AGSubgraph { get }

public var value: Value { unsafeAddress set }
public var value: Value {
unsafeAddress
nonmutating set
}
public var valueState: AGValueState { get }
public func valueAndFlags(options: AGValueOptions = []) -> (value: Value, flags: AGChangedValueFlags)
public func changedValue(options: AGValueOptions = []) -> (value: Value, changed: Bool)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ public struct Attribute<Value> {
public var graph: AGGraph { get }
public var subgraph: AGSubgraph { get }

public var value: Value { unsafeAddress set }
public var value: Value {
unsafeAddress
nonmutating set
}
public var valueState: AGValueState { get }
public func valueAndFlags(options: AGValueOptions = []) -> (value: Value, flags: AGChangedValueFlags)
public func changedValue(options: AGValueOptions = []) -> (value: Value, changed: Bool)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ public struct Attribute<Value> {
public var graph: AGGraph { get }
public var subgraph: AGSubgraph { get }

public var value: Value { unsafeAddress set }
public var value: Value {
unsafeAddress
nonmutating set
}
public var valueState: AGValueState { get }
public func valueAndFlags(options: AGValueOptions = []) -> (value: Value, flags: AGChangedValueFlags)
public func changedValue(options: AGValueOptions = []) -> (value: Value, changed: Bool)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ public struct Attribute<Value> {
public var graph: AGGraph { get }
public var subgraph: AGSubgraph { get }

public var value: Value { unsafeAddress set }
public var value: Value {
unsafeAddress
nonmutating set
}
public var valueState: AGValueState { get }
public func valueAndFlags(options: AGValueOptions = []) -> (value: Value, flags: AGChangedValueFlags)
public func changedValue(options: AGValueOptions = []) -> (value: Value, changed: Bool)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@ public struct Attribute<Value> {
public var graph: AGGraph { get }
public var subgraph: AGSubgraph { get }

public var value: Value { unsafeAddress set }
public var value: Value {
unsafeAddress
nonmutating set
}
public var valueState: AGValueState { get }
public func valueAndFlags(options: AGValueOptions = []) -> (value: Value, flags: AGChangedValueFlags)
public func changedValue(options: AGValueOptions = []) -> (value: Value, changed: Bool)
Expand Down
Loading