set<ValType> method

Upsert set<ValType>(
  1. Field<ValType> field,
  2. ValType value
)

Set the the value of given column (field).

Implementation

Upsert set<ValType>(Field<ValType> field, ValType value) {
  setValue(field.name, value);
  return this;
}