Enum: Comparator

An enumeration that defines the types of comparison operations available for a RangeCheck

URI: [odm:enum/Comparator](https://cdisc.org/odm2/enum/Comparator) ## Permissible Values | Value | Meaning | Description | | --- | --- | --- | | LT | None | Less than | | LE | None | Less than or equal | | GT | None | Greater than | | GE | None | Greater than or equal | | EQ | None | Equal | | NE | None | Not equal | | IN | None | In set | | NOTIN | None | Not in set | ## Slots | Name | Description | | --- | --- | | [comparator](../slots/comparator.md) | The type of comparison to be performed | ## Identifier and Mapping Information ### Schema Source * from schema: https://cdisc.org/dds ## LinkML Source
name: Comparator
description: An enumeration that defines the types of comparison operations available
  for a RangeCheck
from_schema: https://cdisc.org/dds
rank: 1000
permissible_values:
  LT:
    text: LT
    description: Less than
  LE:
    text: LE
    description: Less than or equal
  GT:
    text: GT
    description: Greater than
  GE:
    text: GE
    description: Greater than or equal
  EQ:
    text: EQ
    description: Equal
  NE:
    text: NE
    description: Not equal
  IN:
    text: IN
    description: In set
  NOTIN:
    text: NOTIN
    description: Not in set