Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Type.Is Nullable Type Rule Clarification #200

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion query-languages/m/type-is.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ Type.Is(<b>type1</b> as type, <b>type2</b> as type) as logical

## About

Determines if a value of `type1` is always compatible with `type2`.
Determines if a value of `type1` is always compatible with `type2`.

Parameter `type2` should be a primitive type value or a nullable primitive type value. When this requirement is not met, this function's behavior is undefined and so should not be relied on.

## Example 1

Expand Down