global<T> method
Implementation
T global<T>({Object? group, int? position}) {
assert(() {
position = position == null ? null : position! + 1;
return true;
}());
return Node.defaultGetData(T, null, globalDependence, group, position);
}