BigML.Model.Predicate.Predicate C# (CSharp) Method

Predicate() private method

private Predicate ( JsonValue json ) : System
json System.Json.JsonValue
return System
            internal Predicate(JsonValue json)
            {
                _predicate = json;
                if (this.MissingOperator)
                {
                    comparisonOperator = this.Operator.Replace("*", "");
                } else
                {
                    comparisonOperator = this.Operator;
                }
            }