getAttributes

Returns a tuple of all attributes attached to the given symbol. By default this will only include actual attributes (see orange.core.Attribute.isAttribute).

Members

Aliases

Attrs
alias Attrs = TypeTuple!(__traits(getAttributes, symbol))
Undocumented in source.
FilteredAttrs
alias FilteredAttrs = Attrs
Undocumented in source.
FilteredAttrs
alias FilteredAttrs = Filter!(isAttribute, Attrs)
Undocumented in source.
getAttributes
alias getAttributes = Attributes!(symbol, TypeTuple!())
Undocumented in source.
getAttributes
alias getAttributes = Attributes!(symbol, FilteredAttrs)
Undocumented in source.

Parameters

symbol

the symbol to return the attributes for

includeNonAttributes

if true, will return all values. Included those not considered attributes

Meta