setNodeAttribute<R> method

void setNodeAttribute<R>(
  1. AttributeKey<R> key,
  2. R value
)

Set attribute of given generic type R for a node series

Implementation

void setNodeAttribute<R>(AttributeKey<R> key, R value) {
  nodeAttributes.setAttr(key, value);
}