count property

int get count

Implementation

int get count {
  _ensureOpen();
  final out = calloc<Uint64>();
  try {
    final status = _bindings.zvecCount(_handle, out);
    _throwIfFailed(status);
    return out.value;
  } finally {
    calloc.free(out);
  }
}