Skip to content

Instantly share code, notes, and snippets.

@spmallette
Created September 2, 2021 21:39
Show Gist options
  • Save spmallette/a0e0733bd41cefe66d0e0b90c3944f71 to your computer and use it in GitHub Desktop.
Save spmallette/a0e0733bd41cefe66d0e0b90c3944f71 to your computer and use it in GitHub Desktop.
{Operator.and, true, true, true},
{Operator.and, true, false, false},
{Operator.and, false, true, false},
{Operator.and, false, false, false},
{Operator.and, null, null, null},
{Operator.and, null, false, false},
{Operator.and, false, null, false},
{Operator.and, null, true, true},
{Operator.and, true, null, true},
{Operator.or, true, true, true},
{Operator.or, true, false, true},
{Operator.or, false, true, true},
{Operator.or, false, false, false},
{Operator.or, null, null, null},
{Operator.or, null, false, false},
{Operator.or, false, null, false},
{Operator.or, null, true, true},
{Operator.or, true, null, true},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment