getValue method

void getValue(
  1. int array,
  2. int offset
)

Implementation

void getValue(int array, int offset){
  bind(); // bind all binding

  final firstValidIndex = _targetGroup.nCachedObjects_,
      binding = _bindings[firstValidIndex];

  // and only call .getValue on the first
  if (binding != null) binding.getValue(array, offset);
}