Uses of Package
care.smith.top.top_phenotypic_query.c2reasoner.functions.comparison

  • Class
    Description
    The function Eq realizes the comparison operator '=' (equal) and returns 'true' if the two arguments are equal, otherwise 'false'.
    The function Ge realizes the comparison operator '≥' (greater or equal) and returns 'true' if the first argument is greater than or equal to the second argument, otherwise 'false'.
    The function Gt realizes the comparison operator '>' (greater) and returns 'true' if the first argument is greater than the second argument, otherwise 'false'.
    The function Le realizes the comparison operator '≤' (less or equal) and returns 'true' if the first argument is less than or equal to the second argument, otherwise 'false'.
    The function Lt realizes the comparison operator '<' (less) and returns 'true' if the first argument is less than the second argument, otherwise 'false'.
    The function Ne realizes the comparison operator '≠' (not equal) and returns 'true' if the two arguments are unequal, otherwise 'false'.