Class CharacterExtensions

java.lang.Object
org.eclipse.xtext.xbase.lib.CharacterExtensions

@GwtCompatible public class CharacterExtensions extends Object
This is an extension library for Character numbers.
Since:
2.3
Author:
Jan Koehnlein - Code generator
  • Constructor Details

    • CharacterExtensions

      public CharacterExtensions()
  • Method Details

    • operator_minus

      @Pure public static int operator_minus(char c)
      The unary minus operator. This is the equivalent to the Java's - function.
      Parameters:
      c - a character.
      Returns:
      -c
      Since:
      2.3
    • operator_minusMinus

      public static char operator_minusMinus(char c)
      The postfix decrement operator. This is the equivalent to the Java's -- postfix function.
      Parameters:
      c - a character.
      Returns:
      c--
      Since:
      2.6
    • operator_minusMinus

      public static Character operator_minusMinus(Character c)
      The postfix decrement operator. This is the equivalent to the Java's -- postfix function.
      Parameters:
      c - a character.
      Returns:
      c--
      Since:
      2.6
    • operator_plusPlus

      public static char operator_plusPlus(char c)
      The postfix increment operator. This is the equivalent to the Java's ++ postfix function.
      Parameters:
      c - a character.
      Returns:
      c++
      Since:
      2.6
    • operator_plusPlus

      public static Character operator_plusPlus(Character c)
      The postfix increment operator. This is the equivalent to the Java's ++ postfix function.
      Parameters:
      c - a character.
      Returns:
      c++
      Since:
      2.6
    • operator_plus

      @Pure public static double operator_plus(char a, double b)
      The binary plus operator. This is the equivalent to the Java + operator.
      Parameters:
      a - a character.
      b - a double.
      Returns:
      a+b
      Since:
      2.3
    • operator_minus

      @Pure public static double operator_minus(char a, double b)
      The binary minus operator. This is the equivalent to the Java - operator.
      Parameters:
      a - a character.
      b - a double.
      Returns:
      a-b
      Since:
      2.3
    • operator_multiply

      @Pure public static double operator_multiply(char a, double b)
      The binary multiply operator. This is the equivalent to the Java * operator.
      Parameters:
      a - a character.
      b - a double.
      Returns:
      a*b
      Since:
      2.3
    • operator_divide

      @Pure public static double operator_divide(char a, double b)
      The binary divide operator. This is the equivalent to the Java / operator.
      Parameters:
      a - a character.
      b - a double.
      Returns:
      a/b
      Since:
      2.3
    • operator_modulo

      @Pure public static double operator_modulo(char a, double b)
      The binary modulo operator. This is the equivalent to the Java % operator.
      Parameters:
      a - a character.
      b - a double.
      Returns:
      a%b
      Since:
      2.3
    • operator_lessThan

      @Pure public static boolean operator_lessThan(char a, double b)
      The binary lessThan operator. This is the equivalent to the Java < operator.
      Parameters:
      a - a character.
      b - a double.
      Returns:
      a<b
      Since:
      2.3
    • operator_lessEqualsThan

      @Pure public static boolean operator_lessEqualsThan(char a, double b)
      The binary lessEqualsThan operator. This is the equivalent to the Java <= operator.
      Parameters:
      a - a character.
      b - a double.
      Returns:
      a<=b
      Since:
      2.3
    • operator_greaterThan

      @Pure public static boolean operator_greaterThan(char a, double b)
      The binary greaterThan operator. This is the equivalent to the Java > operator.
      Parameters:
      a - a character.
      b - a double.
      Returns:
      a>b
      Since:
      2.3
    • operator_greaterEqualsThan

      @Pure public static boolean operator_greaterEqualsThan(char a, double b)
      The binary greaterEqualsThan operator. This is the equivalent to the Java >= operator.
      Parameters:
      a - a character.
      b - a double.
      Returns:
      a>=b
      Since:
      2.3
    • operator_equals

      @Pure public static boolean operator_equals(char a, double b)
      The binary equals operator. This is the equivalent to the Java == operator.
      Parameters:
      a - a character.
      b - a double.
      Returns:
      a==b
      Since:
      2.3
    • operator_notEquals

      @Pure public static boolean operator_notEquals(char a, double b)
      The binary notEquals operator. This is the equivalent to the Java != operator.
      Parameters:
      a - a character.
      b - a double.
      Returns:
      a!=b
      Since:
      2.3
    • operator_power

      @Pure public static double operator_power(char a, double b)
      The binary power operator. This is the equivalent to the Java's Math.pow() function.
      Parameters:
      a - a character.
      b - a double.
      Returns:
      Math.pow(a, b)
      Since:
      2.3
    • operator_tripleEquals

      @Pure public static boolean operator_tripleEquals(char a, double b)
      The identity equals operator. This is the equivalent to Java's == operator.
      Parameters:
      a - a character.
      b - a double.
      Returns:
      a == b
      Since:
      2.4
    • operator_tripleNotEquals

      @Pure public static boolean operator_tripleNotEquals(char a, double b)
      The identity not equals operator. This is the equivalent to Java's != operator.
      Parameters:
      a - a character.
      b - a double.
      Returns:
      a != b
      Since:
      2.4
    • operator_plus

      @Pure public static float operator_plus(char a, float b)
      The binary plus operator. This is the equivalent to the Java + operator.
      Parameters:
      a - a character.
      b - a float.
      Returns:
      a+b
      Since:
      2.3
    • operator_minus

      @Pure public static float operator_minus(char a, float b)
      The binary minus operator. This is the equivalent to the Java - operator.
      Parameters:
      a - a character.
      b - a float.
      Returns:
      a-b
      Since:
      2.3
    • operator_multiply

      @Pure public static float operator_multiply(char a, float b)
      The binary multiply operator. This is the equivalent to the Java * operator.
      Parameters:
      a - a character.
      b - a float.
      Returns:
      a*b
      Since:
      2.3
    • operator_divide

      @Pure public static float operator_divide(char a, float b)
      The binary divide operator. This is the equivalent to the Java / operator.
      Parameters:
      a - a character.
      b - a float.
      Returns:
      a/b
      Since:
      2.3
    • operator_modulo

      @Pure public static float operator_modulo(char a, float b)
      The binary modulo operator. This is the equivalent to the Java % operator.
      Parameters:
      a - a character.
      b - a float.
      Returns:
      a%b
      Since:
      2.3
    • operator_lessThan

      @Pure public static boolean operator_lessThan(char a, float b)
      The binary lessThan operator. This is the equivalent to the Java < operator.
      Parameters:
      a - a character.
      b - a float.
      Returns:
      a<b
      Since:
      2.3
    • operator_lessEqualsThan

      @Pure public static boolean operator_lessEqualsThan(char a, float b)
      The binary lessEqualsThan operator. This is the equivalent to the Java <= operator.
      Parameters:
      a - a character.
      b - a float.
      Returns:
      a<=b
      Since:
      2.3
    • operator_greaterThan

      @Pure public static boolean operator_greaterThan(char a, float b)
      The binary greaterThan operator. This is the equivalent to the Java > operator.
      Parameters:
      a - a character.
      b - a float.
      Returns:
      a>b
      Since:
      2.3
    • operator_greaterEqualsThan

      @Pure public static boolean operator_greaterEqualsThan(char a, float b)
      The binary greaterEqualsThan operator. This is the equivalent to the Java >= operator.
      Parameters:
      a - a character.
      b - a float.
      Returns:
      a>=b
      Since:
      2.3
    • operator_equals

      @Pure public static boolean operator_equals(char a, float b)
      The binary equals operator. This is the equivalent to the Java == operator.
      Parameters:
      a - a character.
      b - a float.
      Returns:
      a==b
      Since:
      2.3
    • operator_notEquals

      @Pure public static boolean operator_notEquals(char a, float b)
      The binary notEquals operator. This is the equivalent to the Java != operator.
      Parameters:
      a - a character.
      b - a float.
      Returns:
      a!=b
      Since:
      2.3
    • operator_power

      @Pure public static double operator_power(char a, float b)
      The binary power operator. This is the equivalent to the Java's Math.pow() function.
      Parameters:
      a - a character.
      b - a float.
      Returns:
      Math.pow(a, b)
      Since:
      2.3
    • operator_tripleEquals

      @Pure public static boolean operator_tripleEquals(char a, float b)
      The identity equals operator. This is the equivalent to Java's == operator.
      Parameters:
      a - a character.
      b - a float.
      Returns:
      a == b
      Since:
      2.4
    • operator_tripleNotEquals

      @Pure public static boolean operator_tripleNotEquals(char a, float b)
      The identity not equals operator. This is the equivalent to Java's != operator.
      Parameters:
      a - a character.
      b - a float.
      Returns:
      a != b
      Since:
      2.4
    • operator_plus

      @Pure public static long operator_plus(char a, long b)
      The binary plus operator. This is the equivalent to the Java + operator.
      Parameters:
      a - a character.
      b - a long.
      Returns:
      a+b
      Since:
      2.3
    • operator_minus

      @Pure public static long operator_minus(char a, long b)
      The binary minus operator. This is the equivalent to the Java - operator.
      Parameters:
      a - a character.
      b - a long.
      Returns:
      a-b
      Since:
      2.3
    • operator_multiply

      @Pure public static long operator_multiply(char a, long b)
      The binary multiply operator. This is the equivalent to the Java * operator.
      Parameters:
      a - a character.
      b - a long.
      Returns:
      a*b
      Since:
      2.3
    • operator_divide

      @Pure public static long operator_divide(char a, long b)
      The binary divide operator. This is the equivalent to the Java / operator.
      Parameters:
      a - a character.
      b - a long.
      Returns:
      a/b
      Since:
      2.3
    • operator_modulo

      @Pure public static long operator_modulo(char a, long b)
      The binary modulo operator. This is the equivalent to the Java % operator.
      Parameters:
      a - a character.
      b - a long.
      Returns:
      a%b
      Since:
      2.3
    • operator_lessThan

      @Pure public static boolean operator_lessThan(char a, long b)
      The binary lessThan operator. This is the equivalent to the Java < operator.
      Parameters:
      a - a character.
      b - a long.
      Returns:
      a<b
      Since:
      2.3
    • operator_lessEqualsThan

      @Pure public static boolean operator_lessEqualsThan(char a, long b)
      The binary lessEqualsThan operator. This is the equivalent to the Java <= operator.
      Parameters:
      a - a character.
      b - a long.
      Returns:
      a<=b
      Since:
      2.3
    • operator_greaterThan

      @Pure public static boolean operator_greaterThan(char a, long b)
      The binary greaterThan operator. This is the equivalent to the Java > operator.
      Parameters:
      a - a character.
      b - a long.
      Returns:
      a>b
      Since:
      2.3
    • operator_greaterEqualsThan

      @Pure public static boolean operator_greaterEqualsThan(char a, long b)
      The binary greaterEqualsThan operator. This is the equivalent to the Java >= operator.
      Parameters:
      a - a character.
      b - a long.
      Returns:
      a>=b
      Since:
      2.3
    • operator_equals

      @Pure public static boolean operator_equals(char a, long b)
      The binary equals operator. This is the equivalent to the Java == operator.
      Parameters:
      a - a character.
      b - a long.
      Returns:
      a==b
      Since:
      2.3
    • operator_notEquals

      @Pure public static boolean operator_notEquals(char a, long b)
      The binary notEquals operator. This is the equivalent to the Java != operator.
      Parameters:
      a - a character.
      b - a long.
      Returns:
      a!=b
      Since:
      2.3
    • operator_power

      @Pure public static double operator_power(char a, long b)
      The binary power operator. This is the equivalent to the Java's Math.pow() function.
      Parameters:
      a - a character.
      b - a long.
      Returns:
      Math.pow(a, b)
      Since:
      2.3
    • operator_tripleEquals

      @Pure public static boolean operator_tripleEquals(char a, long b)
      The identity equals operator. This is the equivalent to Java's == operator.
      Parameters:
      a - a character.
      b - a long.
      Returns:
      a == b
      Since:
      2.4
    • operator_tripleNotEquals

      @Pure public static boolean operator_tripleNotEquals(char a, long b)
      The identity not equals operator. This is the equivalent to Java's != operator.
      Parameters:
      a - a character.
      b - a long.
      Returns:
      a != b
      Since:
      2.4
    • operator_plus

      @Pure public static int operator_plus(char a, int b)
      The binary plus operator. This is the equivalent to the Java + operator.
      Parameters:
      a - a character.
      b - an integer.
      Returns:
      a+b
      Since:
      2.3
    • operator_minus

      @Pure public static int operator_minus(char a, int b)
      The binary minus operator. This is the equivalent to the Java - operator.
      Parameters:
      a - a character.
      b - an integer.
      Returns:
      a-b
      Since:
      2.3
    • operator_multiply

      @Pure public static int operator_multiply(char a, int b)
      The binary multiply operator. This is the equivalent to the Java * operator.
      Parameters:
      a - a character.
      b - an integer.
      Returns:
      a*b
      Since:
      2.3
    • operator_divide

      @Pure public static int operator_divide(char a, int b)
      The binary divide operator. This is the equivalent to the Java / operator.
      Parameters:
      a - a character.
      b - an integer.
      Returns:
      a/b
      Since:
      2.3
    • operator_modulo

      @Pure public static int operator_modulo(char a, int b)
      The binary modulo operator. This is the equivalent to the Java % operator.
      Parameters:
      a - a character.
      b - an integer.
      Returns:
      a%b
      Since:
      2.3
    • operator_lessThan

      @Pure public static boolean operator_lessThan(char a, int b)
      The binary lessThan operator. This is the equivalent to the Java < operator.
      Parameters:
      a - a character.
      b - an integer.
      Returns:
      a<b
      Since:
      2.3
    • operator_lessEqualsThan

      @Pure public static boolean operator_lessEqualsThan(char a, int b)
      The binary lessEqualsThan operator. This is the equivalent to the Java <= operator.
      Parameters:
      a - a character.
      b - an integer.
      Returns:
      a<=b
      Since:
      2.3
    • operator_greaterThan

      @Pure public static boolean operator_greaterThan(char a, int b)
      The binary greaterThan operator. This is the equivalent to the Java > operator.
      Parameters:
      a - a character.
      b - an integer.
      Returns:
      a>b
      Since:
      2.3
    • operator_greaterEqualsThan

      @Pure public static boolean operator_greaterEqualsThan(char a, int b)
      The binary greaterEqualsThan operator. This is the equivalent to the Java >= operator.
      Parameters:
      a - a character.
      b - an integer.
      Returns:
      a>=b
      Since:
      2.3
    • operator_equals

      @Pure public static boolean operator_equals(char a, int b)
      The binary equals operator. This is the equivalent to the Java == operator.
      Parameters:
      a - a character.
      b - an integer.
      Returns:
      a==b
      Since:
      2.3
    • operator_notEquals

      @Pure public static boolean operator_notEquals(char a, int b)
      The binary notEquals operator. This is the equivalent to the Java != operator.
      Parameters:
      a - a character.
      b - an integer.
      Returns:
      a!=b
      Since:
      2.3
    • operator_power

      @Pure public static double operator_power(char a, int b)
      The binary power operator. This is the equivalent to the Java's Math.pow() function.
      Parameters:
      a - a character.
      b - an integer.
      Returns:
      Math.pow(a, b)
      Since:
      2.3
    • operator_tripleEquals

      @Pure public static boolean operator_tripleEquals(char a, int b)
      The identity equals operator. This is the equivalent to Java's == operator.
      Parameters:
      a - a character.
      b - an integer.
      Returns:
      a == b
      Since:
      2.4
    • operator_tripleNotEquals

      @Pure public static boolean operator_tripleNotEquals(char a, int b)
      The identity not equals operator. This is the equivalent to Java's != operator.
      Parameters:
      a - a character.
      b - an integer.
      Returns:
      a != b
      Since:
      2.4
    • operator_plus

      @Pure public static int operator_plus(char a, char b)
      The binary plus operator. This is the equivalent to the Java + operator.
      Parameters:
      a - a character.
      b - a character.
      Returns:
      a+b
      Since:
      2.3
    • operator_minus

      @Pure public static int operator_minus(char a, char b)
      The binary minus operator. This is the equivalent to the Java - operator.
      Parameters:
      a - a character.
      b - a character.
      Returns:
      a-b
      Since:
      2.3
    • operator_multiply

      @Pure public static int operator_multiply(char a, char b)
      The binary multiply operator. This is the equivalent to the Java * operator.
      Parameters:
      a - a character.
      b - a character.
      Returns:
      a*b
      Since:
      2.3
    • operator_divide

      @Pure public static int operator_divide(char a, char b)
      The binary divide operator. This is the equivalent to the Java / operator.
      Parameters:
      a - a character.
      b - a character.
      Returns:
      a/b
      Since:
      2.3
    • operator_modulo

      @Pure public static int operator_modulo(char a, char b)
      The binary modulo operator. This is the equivalent to the Java % operator.
      Parameters:
      a - a character.
      b - a character.
      Returns:
      a%b
      Since:
      2.3
    • operator_lessThan

      @Pure public static boolean operator_lessThan(char a, char b)
      The binary lessThan operator. This is the equivalent to the Java < operator.
      Parameters:
      a - a character.
      b - a character.
      Returns:
      a<b
      Since:
      2.3
    • operator_lessEqualsThan

      @Pure public static boolean operator_lessEqualsThan(char a, char b)
      The binary lessEqualsThan operator. This is the equivalent to the Java <= operator.
      Parameters:
      a - a character.
      b - a character.
      Returns:
      a<=b
      Since:
      2.3
    • operator_greaterThan

      @Pure public static boolean operator_greaterThan(char a, char b)
      The binary greaterThan operator. This is the equivalent to the Java > operator.
      Parameters:
      a - a character.
      b - a character.
      Returns:
      a>b
      Since:
      2.3
    • operator_greaterEqualsThan

      @Pure public static boolean operator_greaterEqualsThan(char a, char b)
      The binary greaterEqualsThan operator. This is the equivalent to the Java >= operator.
      Parameters:
      a - a character.
      b - a character.
      Returns:
      a>=b
      Since:
      2.3
    • operator_equals

      @Pure public static boolean operator_equals(char a, char b)
      The binary equals operator. This is the equivalent to the Java == operator.
      Parameters:
      a - a character.
      b - a character.
      Returns:
      a==b
      Since:
      2.3
    • operator_notEquals

      @Pure public static boolean operator_notEquals(char a, char b)
      The binary notEquals operator. This is the equivalent to the Java != operator.
      Parameters:
      a - a character.
      b - a character.
      Returns:
      a!=b
      Since:
      2.3
    • operator_power

      @Pure public static double operator_power(char a, char b)
      The binary power operator. This is the equivalent to the Java's Math.pow() function.
      Parameters:
      a - a character.
      b - a character.
      Returns:
      Math.pow(a, b)
      Since:
      2.3
    • operator_tripleEquals

      @Pure public static boolean operator_tripleEquals(char a, char b)
      The identity equals operator. This is the equivalent to Java's == operator.
      Parameters:
      a - a character.
      b - a character.
      Returns:
      a == b
      Since:
      2.4
    • operator_tripleNotEquals

      @Pure public static boolean operator_tripleNotEquals(char a, char b)
      The identity not equals operator. This is the equivalent to Java's != operator.
      Parameters:
      a - a character.
      b - a character.
      Returns:
      a != b
      Since:
      2.4
    • operator_plus

      @Pure public static int operator_plus(char a, short b)
      The binary plus operator. This is the equivalent to the Java + operator.
      Parameters:
      a - a character.
      b - a short.
      Returns:
      a+b
      Since:
      2.3
    • operator_minus

      @Pure public static int operator_minus(char a, short b)
      The binary minus operator. This is the equivalent to the Java - operator.
      Parameters:
      a - a character.
      b - a short.
      Returns:
      a-b
      Since:
      2.3
    • operator_multiply

      @Pure public static int operator_multiply(char a, short b)
      The binary multiply operator. This is the equivalent to the Java * operator.
      Parameters:
      a - a character.
      b - a short.
      Returns:
      a*b
      Since:
      2.3
    • operator_divide

      @Pure public static int operator_divide(char a, short b)
      The binary divide operator. This is the equivalent to the Java / operator.
      Parameters:
      a - a character.
      b - a short.
      Returns:
      a/b
      Since:
      2.3
    • operator_modulo

      @Pure public static int operator_modulo(char a, short b)
      The binary modulo operator. This is the equivalent to the Java % operator.
      Parameters:
      a - a character.
      b - a short.
      Returns:
      a%b
      Since:
      2.3
    • operator_lessThan

      @Pure public static boolean operator_lessThan(char a, short b)
      The binary lessThan operator. This is the equivalent to the Java < operator.
      Parameters:
      a - a character.
      b - a short.
      Returns:
      a<b
      Since:
      2.3
    • operator_lessEqualsThan

      @Pure public static boolean operator_lessEqualsThan(char a, short b)
      The binary lessEqualsThan operator. This is the equivalent to the Java <= operator.
      Parameters:
      a - a character.
      b - a short.
      Returns:
      a<=b
      Since:
      2.3
    • operator_greaterThan

      @Pure public static boolean operator_greaterThan(char a, short b)
      The binary greaterThan operator. This is the equivalent to the Java > operator.
      Parameters:
      a - a character.
      b - a short.
      Returns:
      a>b
      Since:
      2.3
    • operator_greaterEqualsThan

      @Pure public static boolean operator_greaterEqualsThan(char a, short b)
      The binary greaterEqualsThan operator. This is the equivalent to the Java >= operator.
      Parameters:
      a - a character.
      b - a short.
      Returns:
      a>=b
      Since:
      2.3
    • operator_equals

      @Pure public static boolean operator_equals(char a, short b)
      The binary equals operator. This is the equivalent to the Java == operator.
      Parameters:
      a - a character.
      b - a short.
      Returns:
      a==b
      Since:
      2.3
    • operator_notEquals

      @Pure public static boolean operator_notEquals(char a, short b)
      The binary notEquals operator. This is the equivalent to the Java != operator.
      Parameters:
      a - a character.
      b - a short.
      Returns:
      a!=b
      Since:
      2.3
    • operator_power

      @Pure public static double operator_power(char a, short b)
      The binary power operator. This is the equivalent to the Java's Math.pow() function.
      Parameters:
      a - a character.
      b - a short.
      Returns:
      Math.pow(a, b)
      Since:
      2.3
    • operator_tripleEquals

      @Pure public static boolean operator_tripleEquals(char a, short b)
      The identity equals operator. This is the equivalent to Java's == operator.
      Parameters:
      a - a character.
      b - a short.
      Returns:
      a == b
      Since:
      2.4
    • operator_tripleNotEquals

      @Pure public static boolean operator_tripleNotEquals(char a, short b)
      The identity not equals operator. This is the equivalent to Java's != operator.
      Parameters:
      a - a character.
      b - a short.
      Returns:
      a != b
      Since:
      2.4
    • operator_plus

      @Pure public static int operator_plus(char a, byte b)
      The binary plus operator. This is the equivalent to the Java + operator.
      Parameters:
      a - a character.
      b - a byte.
      Returns:
      a+b
      Since:
      2.3
    • operator_minus

      @Pure public static int operator_minus(char a, byte b)
      The binary minus operator. This is the equivalent to the Java - operator.
      Parameters:
      a - a character.
      b - a byte.
      Returns:
      a-b
      Since:
      2.3
    • operator_multiply

      @Pure public static int operator_multiply(char a, byte b)
      The binary multiply operator. This is the equivalent to the Java * operator.
      Parameters:
      a - a character.
      b - a byte.
      Returns:
      a*b
      Since:
      2.3
    • operator_divide

      @Pure public static int operator_divide(char a, byte b)
      The binary divide operator. This is the equivalent to the Java / operator.
      Parameters:
      a - a character.
      b - a byte.
      Returns:
      a/b
      Since:
      2.3
    • operator_modulo

      @Pure public static int operator_modulo(char a, byte b)
      The binary modulo operator. This is the equivalent to the Java % operator.
      Parameters:
      a - a character.
      b - a byte.
      Returns:
      a%b
      Since:
      2.3
    • operator_lessThan

      @Pure public static boolean operator_lessThan(char a, byte b)
      The binary lessThan operator. This is the equivalent to the Java < operator.
      Parameters:
      a - a character.
      b - a byte.
      Returns:
      a<b
      Since:
      2.3
    • operator_lessEqualsThan

      @Pure public static boolean operator_lessEqualsThan(char a, byte b)
      The binary lessEqualsThan operator. This is the equivalent to the Java <= operator.
      Parameters:
      a - a character.
      b - a byte.
      Returns:
      a<=b
      Since:
      2.3
    • operator_greaterThan

      @Pure public static boolean operator_greaterThan(char a, byte b)
      The binary greaterThan operator. This is the equivalent to the Java > operator.
      Parameters:
      a - a character.
      b - a byte.
      Returns:
      a>b
      Since:
      2.3
    • operator_greaterEqualsThan

      @Pure public static boolean operator_greaterEqualsThan(char a, byte b)
      The binary greaterEqualsThan operator. This is the equivalent to the Java >= operator.
      Parameters:
      a - a character.
      b - a byte.
      Returns:
      a>=b
      Since:
      2.3
    • operator_equals

      @Pure public static boolean operator_equals(char a, byte b)
      The binary equals operator. This is the equivalent to the Java == operator.
      Parameters:
      a - a character.
      b - a byte.
      Returns:
      a==b
      Since:
      2.3
    • operator_notEquals

      @Pure public static boolean operator_notEquals(char a, byte b)
      The binary notEquals operator. This is the equivalent to the Java != operator.
      Parameters:
      a - a character.
      b - a byte.
      Returns:
      a!=b
      Since:
      2.3
    • operator_power

      @Pure public static double operator_power(char a, byte b)
      The binary power operator. This is the equivalent to the Java's Math.pow() function.
      Parameters:
      a - a character.
      b - a byte.
      Returns:
      Math.pow(a, b)
      Since:
      2.3
    • operator_tripleEquals

      @Pure public static boolean operator_tripleEquals(char a, byte b)
      The identity equals operator. This is the equivalent to Java's == operator.
      Parameters:
      a - a character.
      b - a byte.
      Returns:
      a == b
      Since:
      2.4
    • operator_tripleNotEquals

      @Pure public static boolean operator_tripleNotEquals(char a, byte b)
      The identity not equals operator. This is the equivalent to Java's != operator.
      Parameters:
      a - a character.
      b - a byte.
      Returns:
      a != b
      Since:
      2.4