c-schuler

Results 6 comments of c-schuler

I agree with what @JPercival posted, but I am curious as to why "in interval 2" is true and "in interval 3" is false. Seems odd to me so I...

This is a Java thing. '\\' is a special character in Java land and must be escaped. Try: define MatchesFalse: Matches('1,2three', '\\\w+')

@brynrhodes : was my explanation satisfactory or is there some further action required to resolve this issue?

Thank you @umeshprasad123 for raising this issue. Unfortunately, the description you have given is not very helpful to determine what the actual issue is. I would recommend splitting up the...

Interesting use case. I was able to successfully run the following in VSCode: ``` valueset "Marital Status": 'http://hl7.org/fhir/ValueSet/marital-status' define "Call VSTestIn function": VSTestIn("Marital Status") define function VSTestIn(vs System.ValueSet): Code {...

According to the [spec](http://cql.hl7.org/09-b-cqlreference.html#equal-2), this is the correct behavior for list equality. From the spec: `If either argument is null, or contains null elements, the result is null.`. List equivalence...