exact property

  1. @TagNumber(2)
bool get exact

Search without approximation. If set to true, search may run long but with exact results.

Implementation

@$pb.TagNumber(2)
$core.bool get exact => $_getBF(1);
  1. @TagNumber(2)
set exact (bool v)

Implementation

@$pb.TagNumber(2)
set exact($core.bool v) {
  $_setBool(1, v);
}