inactivate method

Iterable<Object> inactivate()
inherited

Implementation

Iterable<Object> inactivate() {

    if (values is Iterable<ValuePattern>) return map((e) => (e as ValuePattern).inactivate());

    if (values is Iterable<AggregationPattern>) return map((e) => (e as AggregationPattern).inactivate());

    return values;

}