distinct property

bool distinct

Implementation

bool get distinct => _distinct;
void distinct= (bool d)

Set to only return distinct values.

E.g. 1,2,3 instead of 1,1,2,3,3,3. Strings default to case-insensitive comparision.

Implementation

set distinct(bool d) {
  _distinct = d;
  checkObx(bindings.obx_query_prop_distinct(_cProp, d ? 1 : 0));
}