getNodeAttribute<R> method

R? getNodeAttribute<R>(
  1. AttributeKey<R> key
)

Get attribute of given generic type R for a node series

Implementation

R? getNodeAttribute<R>(AttributeKey<R> key) {
  return nodeAttributes.getAttr<R>(key);
}