Uses of Annotation Type
org.eclipse.xtext.xbase.lib.Pure

Packages that use Pure
Package
Description
 
  • Uses of Pure in org.eclipse.xtext.xbase.lib

    Methods in org.eclipse.xtext.xbase.lib with annotations of type Pure
    Modifier and Type
    Method
    Description
    static int
    IntegerExtensions.bitwiseAnd(int a, int b)
    The bitwise and operation.
    static long
    LongExtensions.bitwiseAnd(long a, long b)
    The bitwise and operation.
    static int
    IntegerExtensions.bitwiseNot(int a)
    The bitwise complement operation.
    static long
    LongExtensions.bitwiseNot(long a)
    The bitwise complement operation.
    static int
    IntegerExtensions.bitwiseOr(int a, int b)
    The bitwise inclusive or operation.
    static long
    LongExtensions.bitwiseOr(long a, long b)
    The bitwise inclusive or operation.
    static int
    IntegerExtensions.bitwiseXor(int a, int b)
    The bitwise exclusive or operation.
    static long
    LongExtensions.bitwiseXor(long a, long b)
    The bitwise exclusive or operation.
    static boolean[]
    ArrayExtensions.clone(boolean[] array)
    Clones the array.
    static byte[]
    ArrayExtensions.clone(byte[] array)
    Clones the array.
    static char[]
    ArrayExtensions.clone(char[] array)
    Clones the array.
    static double[]
    ArrayExtensions.clone(double[] array)
    Clones the array.
    static float[]
    ArrayExtensions.clone(float[] array)
    Clones the array.
    static int[]
    ArrayExtensions.clone(int[] array)
    Clones the array.
    static long[]
    ArrayExtensions.clone(long[] array)
    Clones the array.
    static short[]
    ArrayExtensions.clone(short[] array)
    Clones the array.
    static <T> T[]
    ArrayExtensions.clone(T[] array)
    Clones the array.
    static boolean
    ArrayExtensions.contains(boolean[] array, boolean value)
    Returns whether the array contains the given value.
    static boolean
    ArrayExtensions.contains(byte[] array, byte value)
    Returns whether the array contains the given value.
    static boolean
    ArrayExtensions.contains(char[] array, char value)
    Returns whether the array contains the given value.
    static boolean
    ArrayExtensions.contains(double[] array, double value)
    Returns whether the array contains the given value.
    static boolean
    ArrayExtensions.contains(float[] array, float value)
    Returns whether the array contains the given value.
    static boolean
    ArrayExtensions.contains(int[] array, int value)
    Returns whether the array contains the given value.
    static boolean
    ArrayExtensions.contains(long[] array, long value)
    Returns whether the array contains the given value.
    static boolean
    ArrayExtensions.contains(short[] array, short value)
    Returns whether the array contains the given value.
    static boolean
    ArrayExtensions.contains(Object[] array, Object o)
    Returns whether the array contains the given element.
    boolean
    ExclusiveRange.contains(int number)
    Checks whether this contains the given number, i.e.
    boolean
    IntegerRange.contains(int number)
    Checks whether this contains the given number, i.e.
    Conversions.WrappedBooleanArray.create(boolean[] array)
    Creates a new Conversions.WrappedBooleanArray that is backed by the given primitive array.
    Conversions.WrappedByteArray.create(byte[] array)
    Creates a new Conversions.WrappedByteArray that is backed by the given primitive array.
    Conversions.WrappedCharacterArray.create(char[] array)
    Creates a new Conversions.WrappedCharacterArray that is backed by the given primitive array.
    Conversions.WrappedDoubleArray.create(double[] array)
    Creates a new Conversions.WrappedDoubleArray that is backed by the given primitive array.
    Conversions.WrappedFloatArray.create(float[] array)
    Creates a new Conversions.WrappedFloatArray that is backed by the given primitive array.
    Conversions.WrappedIntegerArray.create(int[] array)
    Creates a new Conversions.WrappedIntegerArray that is backed by the given primitive array.
    Conversions.WrappedLongArray.create(long[] array)
    Creates a new Conversions.WrappedLongArray that is backed by the given primitive array.
    Conversions.WrappedShortArray.create(short[] array)
    Creates a new Conversions.WrappedShortArray that is backed by the given primitive array.
    static <P1, RESULT>
    Functions.Function0<RESULT>
    FunctionExtensions.curry(Functions.Function1<? super P1,? extends RESULT> function, P1 argument)
    Curries a function that takes one argument.
    static <P1, P2, RESULT>
    Functions.Function1<P2,RESULT>
    FunctionExtensions.curry(Functions.Function2<? super P1,? super P2,? extends RESULT> function, P1 argument)
    Curries a function that takes two arguments.
    static <P1, P2, P3, RESULT>
    Functions.Function2<P2,P3,RESULT>
    FunctionExtensions.curry(Functions.Function3<? super P1,? super P2,? super P3,? extends RESULT> function, P1 argument)
    Curries a function that takes three arguments.
    static <P1, P2, P3, P4, RESULT>
    Functions.Function3<P2,P3,P4,RESULT>
    FunctionExtensions.curry(Functions.Function4<? super P1,? super P2,? super P3,? super P4,? extends RESULT> function, P1 argument)
    Curries a function that takes four arguments.
    static <P1, P2, P3, P4, P5, RESULT>
    Functions.Function4<P2,P3,P4,P5,RESULT>
    FunctionExtensions.curry(Functions.Function5<? super P1,? super P2,? super P3,? super P4,? super P5,? extends RESULT> function, P1 argument)
    Curries a function that takes five arguments.
    static <P1, P2, P3, P4, P5, P6, RESULT>
    Functions.Function5<P2,P3,P4,P5,P6,RESULT>
    FunctionExtensions.curry(Functions.Function6<? super P1,? super P2,? super P3,? super P4,? super P5,? super P6,? extends RESULT> function, P1 argument)
    Curries a function that takes six arguments.
    ProcedureExtensions.curry(Procedures.Procedure1<? super P1> procedure, P1 argument)
    Curries a procedure that takes one argument.
    static <P1, P2> Procedures.Procedure1<P2>
    ProcedureExtensions.curry(Procedures.Procedure2<? super P1,? super P2> procedure, P1 argument)
    Curries a procedure that takes two arguments.
    static <P1, P2, P3> Procedures.Procedure2<P2,P3>
    ProcedureExtensions.curry(Procedures.Procedure3<? super P1,? super P2,? super P3> procedure, P1 argument)
    Curries a procedure that takes three arguments.
    static <P1, P2, P3, P4>
    Procedures.Procedure3<P2,P3,P4>
    ProcedureExtensions.curry(Procedures.Procedure4<? super P1,? super P2,? super P3,? super P4> procedure, P1 argument)
    Curries a procedure that takes four arguments.
    static <P1, P2, P3, P4, P5>
    Procedures.Procedure4<P2,P3,P4,P5>
    ProcedureExtensions.curry(Procedures.Procedure5<? super P1,? super P2,? super P3,? super P4,? super P5> procedure, P1 argument)
    Curries a procedure that takes five arguments.
    static <P1, P2, P3, P4, P5, P6>
    Procedures.Procedure5<P2,P3,P4,P5,P6>
    ProcedureExtensions.curry(Procedures.Procedure6<? super P1,? super P2,? super P3,? super P4,? super P5,? super P6> procedure, P1 argument)
    Curries a procedure that takes six arguments.
    static Object
    Conversions.doWrapArray(Object object)
    Wraps object in a list if and only if object is an array.
    static <T> Iterable<T>
    IterableExtensions.drop(Iterable<T> iterable, int count)
    Returns a view on this iterable that provides all elements except the first count entries.
    static <T> List<T>
    CollectionLiterals.emptyList()
    Returns the empty, immutable list.
    static <K, V> Map<K,V>
    CollectionLiterals.emptyMap()
    Returns the empty, immutable map.
    static <T> Set<T>
    CollectionLiterals.emptySet()
    Returns the empty, immutable set.
    static boolean
    ArrayExtensions.equals(boolean[] array, Object other)
    Returns whether the array and the given other object are identical.
    static boolean
    ArrayExtensions.equals(byte[] array, Object other)
    Returns whether the array and the given other object are identical.
    static boolean
    ArrayExtensions.equals(char[] array, Object other)
    Returns whether the array and the given other object are identical.
    static boolean
    ArrayExtensions.equals(double[] array, Object other)
    Returns whether the array and the given other object are identical.
    static boolean
    ArrayExtensions.equals(float[] array, Object other)
    Returns whether the array and the given other object are identical.
    static boolean
    ArrayExtensions.equals(int[] array, Object other)
    Returns whether the array and the given other object are identical.
    static boolean
    ArrayExtensions.equals(long[] array, Object other)
    Returns whether the array and the given other object are identical.
    static boolean
    ArrayExtensions.equals(short[] array, Object other)
    Returns whether the array and the given other object are identical.
    static boolean
    ArrayExtensions.equals(Object[] array, Object other)
    Returns whether the array and the given other object are identical.
    static <T> Iterable<T>
    IterableExtensions.filter(Iterable<?> unfiltered, Class<T> type)
    Returns all instances of class type in unfiltered.
    static <T> Iterable<T>
    IterableExtensions.filter(Iterable<T> unfiltered, Functions.Function1<? super T,Boolean> predicate)
    Returns the elements of unfiltered that satisfy a predicate.
    static <T> Iterator<T>
    IteratorExtensions.filter(Iterator<?> unfiltered, Class<T> type)
    Returns all instances of class type in unfiltered.
    static <T> Iterator<T>
    IteratorExtensions.filter(Iterator<T> unfiltered, Functions.Function1<? super T,Boolean> predicate)
    Returns the elements of unfiltered that satisfy a predicate.
    static <T> Iterable<T>
    IterableExtensions.filterNull(Iterable<T> unfiltered)
    Returns a new iterable filtering any null references.
    static <T> Iterator<T>
    IteratorExtensions.filterNull(Iterator<T> unfiltered)
    Returns a new iterator filtering any null references.
    static <T, R> Iterable<R>
    IterableExtensions.flatMap(Iterable<T> original, Functions.Function1<? super T,? extends Iterable<R>> transformation)
    Returns an iterable that performs the given transformation for each element of original when requested.
    static <T, R> Iterator<R>
    IteratorExtensions.flatMap(Iterator<T> original, Functions.Function1<? super T,? extends Iterator<R>> transformation)
    Returns an iterable that performs the given transformation for each element of original when requested.
    static boolean
    ArrayExtensions.get(boolean[][] array, int index0, int index1)
     
    static boolean
    ArrayExtensions.get(boolean[] array, int index)
     
    static byte
    ArrayExtensions.get(byte[][] array, int index0, int index1)
     
    static byte
    ArrayExtensions.get(byte[] array, int index)
     
    static char
    ArrayExtensions.get(char[][] array, int index0, int index1)
     
    static char
    ArrayExtensions.get(char[] array, int index)
     
    static double
    ArrayExtensions.get(double[][] array, int index0, int index1)
     
    static double
    ArrayExtensions.get(double[] array, int index)
     
    static float
    ArrayExtensions.get(float[][] array, int index0, int index1)
     
    static float
    ArrayExtensions.get(float[] array, int index)
     
    static int
    ArrayExtensions.get(int[][] array, int index0, int index1)
     
    static int
    ArrayExtensions.get(int[] array, int index)
     
    static long
    ArrayExtensions.get(long[][] array, int index0, int index1)
     
    static long
    ArrayExtensions.get(long[] array, int index)
     
    static short
    ArrayExtensions.get(short[][] array, int index0, int index1)
     
    static short
    ArrayExtensions.get(short[] array, int index)
     
    static <T> T
    ArrayExtensions.get(T[][] array, int index0, int index1)
     
    static <T> T
    ArrayExtensions.get(T[] array, int index)
     
    int
    IntegerRange.getEnd()
     
    Pair.getKey()
    Returns the key.
    int
    IntegerRange.getSize()
    Returns the number of elements in this IntegerRange.
    int
    IntegerRange.getStart()
     
    int
    IntegerRange.getStep()
     
    Pair.getValue()
    Returns the value.
    static int
    ArrayExtensions.hashCode(boolean[] array)
    Returns a hash code value for the given array.
    static int
    ArrayExtensions.hashCode(byte[] array)
    Returns a hash code value for the given array.
    static int
    ArrayExtensions.hashCode(char[] array)
    Returns a hash code value for the given array.
    static int
    ArrayExtensions.hashCode(double[] array)
    Returns a hash code value for the given array.
    static int
    ArrayExtensions.hashCode(float[] array)
    Returns a hash code value for the given array.
    static int
    ArrayExtensions.hashCode(int[] array)
    Returns a hash code value for the given array.
    static int
    ArrayExtensions.hashCode(long[] array)
    Returns a hash code value for the given array.
    static int
    ArrayExtensions.hashCode(short[] array)
    Returns a hash code value for the given array.
    static int
    ArrayExtensions.hashCode(Object[] array)
    Returns a hash code value for the given array.
    static boolean
    ObjectExtensions.identityEquals(Object a, Object b)
    Returns true if a and b are identical (the same instance) or both null.
    boolean
    ExclusiveRange.isEmpty()
    Returns whether this is range is empty.
    static boolean
    StringExtensions.isNullOrEmpty(String s)
    Returns true if s is null or equal to the empty String "".
    ExclusiveRange.iterator()
     
    IntegerRange.iterator()
     
    static int
    ArrayExtensions.length(boolean[] array)
     
    static int
    ArrayExtensions.length(byte[] array)
     
    static int
    ArrayExtensions.length(char[] array)
     
    static int
    ArrayExtensions.length(double[] array)
     
    static int
    ArrayExtensions.length(float[] array)
     
    static int
    ArrayExtensions.length(int[] array)
     
    static int
    ArrayExtensions.length(long[] array)
     
    static int
    ArrayExtensions.length(short[] array)
     
    static int
    ArrayExtensions.length(Object[] array)
     
    static <T, R> Iterable<R>
    IterableExtensions.map(Iterable<T> original, Functions.Function1<? super T,? extends R> transformation)
    Returns an iterable that performs the given transformation for each element of original when requested.
    static <T, R> Iterator<R>
    IteratorExtensions.map(Iterator<T> original, Functions.Function1<? super T,? extends R> transformation)
    Returns an iterator that performs the given transformation for each element of original when requested.
    static <T, R> List<R>
    ListExtensions.map(List<T> original, Functions.Function1<? super T,? extends R> transformation)
    Returns a list that performs the given transformation for each element of original when requested.
    static <K, V1, V2> Map<K,V2>
    MapExtensions.mapValues(Map<K,V1> original, Functions.Function1<? super V1,? extends V2> transformation)
    Returns a map that performs the given transformation for each value of original when requested.
    static <T> ArrayList<T>
    CollectionLiterals.newArrayList()
    Creates an empty mutable ArrayList instance.
    static <T> ArrayList<T>
    CollectionLiterals.newArrayList(T... initial)
    Creates a mutable ArrayList instance containing the given initial elements.
    static <T> T[]
    ArrayLiterals.newArrayOfSize(int size)
     
    static <T> T[][]
    ArrayLiterals.newArrayOfSize(int size0, int size1)
     
    static boolean[]
    ArrayLiterals.newBooleanArrayOfSize(int size)
     
    static boolean[][]
    ArrayLiterals.newBooleanArrayOfSize(int size0, int size1)
     
    static byte[]
    ArrayLiterals.newByteArrayOfSize(int size)
     
    static byte[][]
    ArrayLiterals.newByteArrayOfSize(int size0, int size1)
     
    static char[]
    ArrayLiterals.newCharArrayOfSize(int size)
     
    static char[][]
    ArrayLiterals.newCharArrayOfSize(int size0, int size1)
     
    static double[]
    ArrayLiterals.newDoubleArrayOfSize(int size)
     
    static double[][]
    ArrayLiterals.newDoubleArrayOfSize(int size0, int size1)
     
    static float[]
    ArrayLiterals.newFloatArrayOfSize(int size)
     
    static float[][]
    ArrayLiterals.newFloatArrayOfSize(int size0, int size1)
     
    static <K, V> HashMap<K,V>
    CollectionLiterals.newHashMap()
    Creates an empty mutable HashMap instance.
    static <K, V> HashMap<K,V>
    CollectionLiterals.newHashMap(Pair<? extends K,? extends V>... initial)
    Creates a mutable HashMap instance containing the given initial entries.
    static <T> HashSet<T>
    CollectionLiterals.newHashSet()
    Creates an empty mutable HashSet instance.
    static <T> HashSet<T>
    CollectionLiterals.newHashSet(T... initial)
    Creates a mutable HashSet instance containing the given initial elements.
    static <T> List<T>
    CollectionLiterals.newImmutableList(T... elements)
    Returns an immutable list containing the given elements, in order.
    static <K, V> Map<K,V>
    CollectionLiterals.newImmutableMap(Pair<? extends K,? extends V>... entries)
    Returns an immutable map containing the given entries.
    static <T> Set<T>
    CollectionLiterals.newImmutableSet(T... elements)
    Returns an immutable set containing the given elements.
    static int[]
    ArrayLiterals.newIntArrayOfSize(int size)
     
    static int[][]
    ArrayLiterals.newIntArrayOfSize(int size0, int size1)
     
    static <K, V> LinkedHashMap<K,V>
    CollectionLiterals.newLinkedHashMap()
    Creates an empty mutable LinkedHashMap instance.
    static <K, V> LinkedHashMap<K,V>
    CollectionLiterals.newLinkedHashMap(Pair<? extends K,? extends V>... initial)
    Creates a mutable LinkedHashMap instance containing the given initial entries.
    static <T> LinkedHashSet<T>
    CollectionLiterals.newLinkedHashSet()
    Creates an empty mutable LinkedHashSet instance.
    static <T> LinkedHashSet<T>
    CollectionLiterals.newLinkedHashSet(T... initial)
    Creates a mutable LinkedHashSet instance containing the given initial elements.
    static <T> LinkedList<T>
    CollectionLiterals.newLinkedList()
    Creates an empty mutable LinkedList instance.
    static <T> LinkedList<T>
    CollectionLiterals.newLinkedList(T... initial)
    Creates a mutable LinkedList instance containing the given initial elements.
    static long[]
    ArrayLiterals.newLongArrayOfSize(int size)
     
    static long[][]
    ArrayLiterals.newLongArrayOfSize(int size0, int size1)
     
    static short[]
    ArrayLiterals.newShortArrayOfSize(int size)
     
    static short[][]
    ArrayLiterals.newShortArrayOfSize(int size0, int size1)
     
    static <K, V> TreeMap<K,V>
    CollectionLiterals.newTreeMap(Comparator<? super K> comparator)
    Creates an empty mutable TreeMap instance.
    static <K, V> TreeMap<K,V>
    CollectionLiterals.newTreeMap(Comparator<? super K> comparator, Pair<? extends K,? extends V>... initial)
    Creates a mutable TreeMap instance containing the given initial entries.
    static <T> TreeSet<T>
    CollectionLiterals.newTreeSet(Comparator<? super T> comparator)
    Creates an empty mutable TreeSet instance.
    static <T> TreeSet<T>
    CollectionLiterals.newTreeSet(Comparator<? super T> comparator, T... initial)
    Creates a mutable TreeSet instance containing the given initial elements.
    static <K, V> Pair<K,V>
    Pair.of(K k, V v)
    Creates a new instance with the given key and value.
    static boolean
    BooleanExtensions.operator_and(boolean a, boolean b)
    The logical and (conjunction).
    static BigDecimal
    BigDecimalExtensions.operator_divide(BigDecimal a, BigDecimal b)
    The binary divide operator.
    static BigInteger
    BigIntegerExtensions.operator_divide(BigInteger a, BigInteger b)
    The binary divide operator.
    static int
    ByteExtensions.operator_divide(byte a, byte b)
    The binary divide operator.
    static int
    ByteExtensions.operator_divide(byte a, char b)
    The binary divide operator.
    static double
    ByteExtensions.operator_divide(byte a, double b)
    The binary divide operator.
    static float
    ByteExtensions.operator_divide(byte a, float b)
    The binary divide operator.
    static int
    ByteExtensions.operator_divide(byte a, int b)
    The binary divide operator.
    static long
    ByteExtensions.operator_divide(byte a, long b)
    The binary divide operator.
    static int
    ByteExtensions.operator_divide(byte a, short b)
    The binary divide operator.
    static int
    CharacterExtensions.operator_divide(char a, byte b)
    The binary divide operator.
    static int
    CharacterExtensions.operator_divide(char a, char b)
    The binary divide operator.
    static double
    CharacterExtensions.operator_divide(char a, double b)
    The binary divide operator.
    static float
    CharacterExtensions.operator_divide(char a, float b)
    The binary divide operator.
    static int
    CharacterExtensions.operator_divide(char a, int b)
    The binary divide operator.
    static long
    CharacterExtensions.operator_divide(char a, long b)
    The binary divide operator.
    static int
    CharacterExtensions.operator_divide(char a, short b)
    The binary divide operator.
    static double
    DoubleExtensions.operator_divide(double a, byte b)
    The binary divide operator.
    static double
    DoubleExtensions.operator_divide(double a, char b)
    The binary divide operator.
    static double
    DoubleExtensions.operator_divide(double a, double b)
    The binary divide operator.
    static double
    DoubleExtensions.operator_divide(double a, float b)
    The binary divide operator.
    static double
    DoubleExtensions.operator_divide(double a, int b)
    The binary divide operator.
    static double
    DoubleExtensions.operator_divide(double a, long b)
    The binary divide operator.
    static double
    DoubleExtensions.operator_divide(double a, short b)
    The binary divide operator.
    static double
    DoubleExtensions.operator_divide(Double a, Number b)
    The binary divide operator.
    static float
    FloatExtensions.operator_divide(float a, byte b)
    The binary divide operator.
    static float
    FloatExtensions.operator_divide(float a, char b)
    The binary divide operator.
    static double
    FloatExtensions.operator_divide(float a, double b)
    The binary divide operator.
    static float
    FloatExtensions.operator_divide(float a, float b)
    The binary divide operator.
    static float
    FloatExtensions.operator_divide(float a, int b)
    The binary divide operator.
    static float
    FloatExtensions.operator_divide(float a, long b)
    The binary divide operator.
    static float
    FloatExtensions.operator_divide(float a, short b)
    The binary divide operator.
    static int
    IntegerExtensions.operator_divide(int a, byte b)
    The binary divide operator.
    static int
    IntegerExtensions.operator_divide(int a, char b)
    The binary divide operator.
    static double
    IntegerExtensions.operator_divide(int a, double b)
    The binary divide operator.
    static float
    IntegerExtensions.operator_divide(int a, float b)
    The binary divide operator.
    static int
    IntegerExtensions.operator_divide(int a, int b)
    The binary divide operator.
    static long
    IntegerExtensions.operator_divide(int a, long b)
    The binary divide operator.
    static int
    IntegerExtensions.operator_divide(int a, short b)
    The binary divide operator.
    static long
    LongExtensions.operator_divide(long a, byte b)
    The binary divide operator.
    static long
    LongExtensions.operator_divide(long a, char b)
    The binary divide operator.
    static double
    LongExtensions.operator_divide(long a, double b)
    The binary divide operator.
    static float
    LongExtensions.operator_divide(long a, float b)
    The binary divide operator.
    static long
    LongExtensions.operator_divide(long a, int b)
    The binary divide operator.
    static long
    LongExtensions.operator_divide(long a, long b)
    The binary divide operator.
    static long
    LongExtensions.operator_divide(long a, short b)
    The binary divide operator.
    static int
    ShortExtensions.operator_divide(short a, byte b)
    The binary divide operator.
    static int
    ShortExtensions.operator_divide(short a, char b)
    The binary divide operator.
    static double
    ShortExtensions.operator_divide(short a, double b)
    The binary divide operator.
    static float
    ShortExtensions.operator_divide(short a, float b)
    The binary divide operator.
    static int
    ShortExtensions.operator_divide(short a, int b)
    The binary divide operator.
    static long
    ShortExtensions.operator_divide(short a, long b)
    The binary divide operator.
    static int
    ShortExtensions.operator_divide(short a, short b)
    The binary divide operator.
    IntegerExtensions.operator_doubleDotLessThan(int a, int b)
    The ..< operator yields an ExclusiveRange that increments from a to b (exclusive).
    static int
    IntegerExtensions.operator_doubleGreaterThan(int a, int distance)
    The binary signed right sift operator.
    static long
    LongExtensions.operator_doubleGreaterThan(long a, int distance)
    The binary signed right sift operator.
    static int
    IntegerExtensions.operator_doubleLessThan(int a, int distance)
    The binary signed left shift operator.
    static long
    LongExtensions.operator_doubleLessThan(long a, int distance)
    The binary signed left shift operator.
    static <T> T
    ObjectExtensions.operator_elvis(T first, T second)
    The elvis operator ?: is a short hand notation for providing default value in case an expression evaluates to null.
    static boolean
    BooleanExtensions.operator_equals(boolean a, boolean b)
    The binary equals operator.
    static boolean
    ByteExtensions.operator_equals(byte a, byte b)
    The binary equals operator.
    static boolean
    ByteExtensions.operator_equals(byte a, char b)
    The binary equals operator.
    static boolean
    ByteExtensions.operator_equals(byte a, double b)
    The binary equals operator.
    static boolean
    ByteExtensions.operator_equals(byte a, float b)
    The binary equals operator.
    static boolean
    ByteExtensions.operator_equals(byte a, int b)
    The binary equals operator.
    static boolean
    ByteExtensions.operator_equals(byte a, long b)
    The binary equals operator.
    static boolean
    ByteExtensions.operator_equals(byte a, short b)
    The binary equals operator.
    static boolean
    CharacterExtensions.operator_equals(char a, byte b)
    The binary equals operator.
    static boolean
    CharacterExtensions.operator_equals(char a, char b)
    The binary equals operator.
    static boolean
    CharacterExtensions.operator_equals(char a, double b)
    The binary equals operator.
    static boolean
    CharacterExtensions.operator_equals(char a, float b)
    The binary equals operator.
    static boolean
    CharacterExtensions.operator_equals(char a, int b)
    The binary equals operator.
    static boolean
    CharacterExtensions.operator_equals(char a, long b)
    The binary equals operator.
    static boolean
    CharacterExtensions.operator_equals(char a, short b)
    The binary equals operator.
    static boolean
    DoubleExtensions.operator_equals(double a, byte b)
    The binary equals operator.
    static boolean
    DoubleExtensions.operator_equals(double a, char b)
    The binary equals operator.
    static boolean
    DoubleExtensions.operator_equals(double a, double b)
    The binary equals operator.
    static boolean
    DoubleExtensions.operator_equals(double a, float b)
    The binary equals operator.
    static boolean
    DoubleExtensions.operator_equals(double a, int b)
    The binary equals operator.
    static boolean
    DoubleExtensions.operator_equals(double a, long b)
    The binary equals operator.
    static boolean
    DoubleExtensions.operator_equals(double a, short b)
    The binary equals operator.
    static boolean
    FloatExtensions.operator_equals(float a, byte b)
    The binary equals operator.
    static boolean
    FloatExtensions.operator_equals(float a, char b)
    The binary equals operator.
    static boolean
    FloatExtensions.operator_equals(float a, double b)
    The binary equals operator.
    static boolean
    FloatExtensions.operator_equals(float a, float b)
    The binary equals operator.
    static boolean
    FloatExtensions.operator_equals(float a, int b)
    The binary equals operator.
    static boolean
    FloatExtensions.operator_equals(float a, long b)
    The binary equals operator.
    static boolean
    FloatExtensions.operator_equals(float a, short b)
    The binary equals operator.
    static boolean
    IntegerExtensions.operator_equals(int a, byte b)
    The binary equals operator.
    static boolean
    IntegerExtensions.operator_equals(int a, char b)
    The binary equals operator.
    static boolean
    IntegerExtensions.operator_equals(int a, double b)
    The binary equals operator.
    static boolean
    IntegerExtensions.operator_equals(int a, float b)
    The binary equals operator.
    static boolean
    IntegerExtensions.operator_equals(int a, int b)
    The binary equals operator.
    static boolean
    IntegerExtensions.operator_equals(int a, long b)
    The binary equals operator.
    static boolean
    IntegerExtensions.operator_equals(int a, short b)
    The binary equals operator.
    static boolean
    LongExtensions.operator_equals(long a, byte b)
    The binary equals operator.
    static boolean
    LongExtensions.operator_equals(long a, char b)
    The binary equals operator.
    static boolean
    LongExtensions.operator_equals(long a, double b)
    The binary equals operator.
    static boolean
    LongExtensions.operator_equals(long a, float b)
    The binary equals operator.
    static boolean
    LongExtensions.operator_equals(long a, int b)
    The binary equals operator.
    static boolean
    LongExtensions.operator_equals(long a, long b)
    The binary equals operator.
    static boolean
    LongExtensions.operator_equals(long a, short b)
    The binary equals operator.
    static boolean
    ObjectExtensions.operator_equals(Object a, Object b)
    The equals operator.
    static boolean
    ShortExtensions.operator_equals(short a, byte b)
    The binary equals operator.
    static boolean
    ShortExtensions.operator_equals(short a, char b)
    The binary equals operator.
    static boolean
    ShortExtensions.operator_equals(short a, double b)
    The binary equals operator.
    static boolean
    ShortExtensions.operator_equals(short a, float b)
    The binary equals operator.
    static boolean
    ShortExtensions.operator_equals(short a, int b)
    The binary equals operator.
    static boolean
    ShortExtensions.operator_equals(short a, long b)
    The binary equals operator.
    static boolean
    ShortExtensions.operator_equals(short a, short b)
    The binary equals operator.
    static boolean
    BooleanExtensions.operator_greaterEqualsThan(boolean a, boolean b)
    The binary greaterEqualsThan operator for boolean values.
    static boolean
    ByteExtensions.operator_greaterEqualsThan(byte a, byte b)
    The binary greaterEqualsThan operator.
    static boolean
    ByteExtensions.operator_greaterEqualsThan(byte a, char b)
    The binary greaterEqualsThan operator.
    static boolean
    ByteExtensions.operator_greaterEqualsThan(byte a, double b)
    The binary greaterEqualsThan operator.
    static boolean
    ByteExtensions.operator_greaterEqualsThan(byte a, float b)
    The binary greaterEqualsThan operator.
    static boolean
    ByteExtensions.operator_greaterEqualsThan(byte a, int b)
    The binary greaterEqualsThan operator.
    static boolean
    ByteExtensions.operator_greaterEqualsThan(byte a, long b)
    The binary greaterEqualsThan operator.
    static boolean
    ByteExtensions.operator_greaterEqualsThan(byte a, short b)
    The binary greaterEqualsThan operator.
    static boolean
    CharacterExtensions.operator_greaterEqualsThan(char a, byte b)
    The binary greaterEqualsThan operator.
    static boolean
    CharacterExtensions.operator_greaterEqualsThan(char a, char b)
    The binary greaterEqualsThan operator.
    static boolean
    CharacterExtensions.operator_greaterEqualsThan(char a, double b)
    The binary greaterEqualsThan operator.
    static boolean
    CharacterExtensions.operator_greaterEqualsThan(char a, float b)
    The binary greaterEqualsThan operator.
    static boolean
    CharacterExtensions.operator_greaterEqualsThan(char a, int b)
    The binary greaterEqualsThan operator.
    static boolean
    CharacterExtensions.operator_greaterEqualsThan(char a, long b)
    The binary greaterEqualsThan operator.
    static boolean
    CharacterExtensions.operator_greaterEqualsThan(char a, short b)
    The binary greaterEqualsThan operator.
    static <C> boolean
    ComparableExtensions.operator_greaterEqualsThan(Comparable<? super C> left, C right)
    The comparison operator greater than or equals.
    static boolean
    DoubleExtensions.operator_greaterEqualsThan(double a, byte b)
    The binary greaterEqualsThan operator.
    static boolean
    DoubleExtensions.operator_greaterEqualsThan(double a, char b)
    The binary greaterEqualsThan operator.
    static boolean
    DoubleExtensions.operator_greaterEqualsThan(double a, double b)
    The binary greaterEqualsThan operator.
    static boolean
    DoubleExtensions.operator_greaterEqualsThan(double a, float b)
    The binary greaterEqualsThan operator.
    static boolean
    DoubleExtensions.operator_greaterEqualsThan(double a, int b)
    The binary greaterEqualsThan operator.
    static boolean
    DoubleExtensions.operator_greaterEqualsThan(double a, long b)
    The binary greaterEqualsThan operator.
    static boolean
    DoubleExtensions.operator_greaterEqualsThan(double a, short b)
    The binary greaterEqualsThan operator.
    static boolean
    FloatExtensions.operator_greaterEqualsThan(float a, byte b)
    The binary greaterEqualsThan operator.
    static boolean
    FloatExtensions.operator_greaterEqualsThan(float a, char b)
    The binary greaterEqualsThan operator.
    static boolean
    FloatExtensions.operator_greaterEqualsThan(float a, double b)
    The binary greaterEqualsThan operator.
    static boolean
    FloatExtensions.operator_greaterEqualsThan(float a, float b)
    The binary greaterEqualsThan operator.
    static boolean
    FloatExtensions.operator_greaterEqualsThan(float a, int b)
    The binary greaterEqualsThan operator.
    static boolean
    FloatExtensions.operator_greaterEqualsThan(float a, long b)
    The binary greaterEqualsThan operator.
    static boolean
    FloatExtensions.operator_greaterEqualsThan(float a, short b)
    The binary greaterEqualsThan operator.
    static boolean
    IntegerExtensions.operator_greaterEqualsThan(int a, byte b)
    The binary greaterEqualsThan operator.
    static boolean
    IntegerExtensions.operator_greaterEqualsThan(int a, char b)
    The binary greaterEqualsThan operator.
    static boolean
    IntegerExtensions.operator_greaterEqualsThan(int a, double b)
    The binary greaterEqualsThan operator.
    static boolean
    IntegerExtensions.operator_greaterEqualsThan(int a, float b)
    The binary greaterEqualsThan operator.
    static boolean
    IntegerExtensions.operator_greaterEqualsThan(int a, int b)
    The binary greaterEqualsThan operator.
    static boolean
    IntegerExtensions.operator_greaterEqualsThan(int a, long b)
    The binary greaterEqualsThan operator.
    static boolean
    IntegerExtensions.operator_greaterEqualsThan(int a, short b)
    The binary greaterEqualsThan operator.
    static boolean
    LongExtensions.operator_greaterEqualsThan(long a, byte b)
    The binary greaterEqualsThan operator.
    static boolean
    LongExtensions.operator_greaterEqualsThan(long a, char b)
    The binary greaterEqualsThan operator.
    static boolean
    LongExtensions.operator_greaterEqualsThan(long a, double b)
    The binary greaterEqualsThan operator.
    static boolean
    LongExtensions.operator_greaterEqualsThan(long a, float b)
    The binary greaterEqualsThan operator.
    static boolean
    LongExtensions.operator_greaterEqualsThan(long a, int b)
    The binary greaterEqualsThan operator.
    static boolean
    LongExtensions.operator_greaterEqualsThan(long a, long b)
    The binary greaterEqualsThan operator.
    static boolean
    LongExtensions.operator_greaterEqualsThan(long a, short b)
    The binary greaterEqualsThan operator.
    static boolean
    ShortExtensions.operator_greaterEqualsThan(short a, byte b)
    The binary greaterEqualsThan operator.
    static boolean
    ShortExtensions.operator_greaterEqualsThan(short a, char b)
    The binary greaterEqualsThan operator.
    static boolean
    ShortExtensions.operator_greaterEqualsThan(short a, double b)
    The binary greaterEqualsThan operator.
    static boolean
    ShortExtensions.operator_greaterEqualsThan(short a, float b)
    The binary greaterEqualsThan operator.
    static boolean
    ShortExtensions.operator_greaterEqualsThan(short a, int b)
    The binary greaterEqualsThan operator.
    static boolean
    ShortExtensions.operator_greaterEqualsThan(short a, long b)
    The binary greaterEqualsThan operator.
    static boolean
    ShortExtensions.operator_greaterEqualsThan(short a, short b)
    The binary greaterEqualsThan operator.
    static boolean
    BooleanExtensions.operator_greaterThan(boolean a, boolean b)
    The binary greaterThan operator for boolean values.
    static boolean
    ByteExtensions.operator_greaterThan(byte a, byte b)
    The binary greaterThan operator.
    static boolean
    ByteExtensions.operator_greaterThan(byte a, char b)
    The binary greaterThan operator.
    static boolean
    ByteExtensions.operator_greaterThan(byte a, double b)
    The binary greaterThan operator.
    static boolean
    ByteExtensions.operator_greaterThan(byte a, float b)
    The binary greaterThan operator.
    static boolean
    ByteExtensions.operator_greaterThan(byte a, int b)
    The binary greaterThan operator.
    static boolean
    ByteExtensions.operator_greaterThan(byte a, long b)
    The binary greaterThan operator.
    static boolean
    ByteExtensions.operator_greaterThan(byte a, short b)
    The binary greaterThan operator.
    static boolean
    CharacterExtensions.operator_greaterThan(char a, byte b)
    The binary greaterThan operator.
    static boolean
    CharacterExtensions.operator_greaterThan(char a, char b)
    The binary greaterThan operator.
    static boolean
    CharacterExtensions.operator_greaterThan(char a, double b)
    The binary greaterThan operator.
    static boolean
    CharacterExtensions.operator_greaterThan(char a, float b)
    The binary greaterThan operator.
    static boolean
    CharacterExtensions.operator_greaterThan(char a, int b)
    The binary greaterThan operator.
    static boolean
    CharacterExtensions.operator_greaterThan(char a, long b)
    The binary greaterThan operator.
    static boolean
    CharacterExtensions.operator_greaterThan(char a, short b)
    The binary greaterThan operator.
    static <C> boolean
    ComparableExtensions.operator_greaterThan(Comparable<? super C> left, C right)
    The comparison operator greater than.
    static boolean
    DoubleExtensions.operator_greaterThan(double a, byte b)
    The binary greaterThan operator.
    static boolean
    DoubleExtensions.operator_greaterThan(double a, char b)
    The binary greaterThan operator.
    static boolean
    DoubleExtensions.operator_greaterThan(double a, double b)
    The binary greaterThan operator.
    static boolean
    DoubleExtensions.operator_greaterThan(double a, float b)
    The binary greaterThan operator.
    static boolean
    DoubleExtensions.operator_greaterThan(double a, int b)
    The binary greaterThan operator.
    static boolean
    DoubleExtensions.operator_greaterThan(double a, long b)
    The binary greaterThan operator.
    static boolean
    DoubleExtensions.operator_greaterThan(double a, short b)
    The binary greaterThan operator.
    static boolean
    FloatExtensions.operator_greaterThan(float a, byte b)
    The binary greaterThan operator.
    static boolean
    FloatExtensions.operator_greaterThan(float a, char b)
    The binary greaterThan operator.
    static boolean
    FloatExtensions.operator_greaterThan(float a, double b)
    The binary greaterThan operator.
    static boolean
    FloatExtensions.operator_greaterThan(float a, float b)
    The binary greaterThan operator.
    static boolean
    FloatExtensions.operator_greaterThan(float a, int b)
    The binary greaterThan operator.
    static boolean
    FloatExtensions.operator_greaterThan(float a, long b)
    The binary greaterThan operator.
    static boolean
    FloatExtensions.operator_greaterThan(float a, short b)
    The binary greaterThan operator.
    static boolean
    IntegerExtensions.operator_greaterThan(int a, byte b)
    The binary greaterThan operator.
    static boolean
    IntegerExtensions.operator_greaterThan(int a, char b)
    The binary greaterThan operator.
    static boolean
    IntegerExtensions.operator_greaterThan(int a, double b)
    The binary greaterThan operator.
    static boolean
    IntegerExtensions.operator_greaterThan(int a, float b)
    The binary greaterThan operator.
    static boolean
    IntegerExtensions.operator_greaterThan(int a, int b)
    The binary greaterThan operator.
    static boolean
    IntegerExtensions.operator_greaterThan(int a, long b)
    The binary greaterThan operator.
    static boolean
    IntegerExtensions.operator_greaterThan(int a, short b)
    The binary greaterThan operator.
    static boolean
    LongExtensions.operator_greaterThan(long a, byte b)
    The binary greaterThan operator.
    static boolean
    LongExtensions.operator_greaterThan(long a, char b)
    The binary greaterThan operator.
    static boolean
    LongExtensions.operator_greaterThan(long a, double b)
    The binary greaterThan operator.
    static boolean
    LongExtensions.operator_greaterThan(long a, float b)
    The binary greaterThan operator.
    static boolean
    LongExtensions.operator_greaterThan(long a, int b)
    The binary greaterThan operator.
    static boolean
    LongExtensions.operator_greaterThan(long a, long b)
    The binary greaterThan operator.
    static boolean
    LongExtensions.operator_greaterThan(long a, short b)
    The binary greaterThan operator.
    static boolean
    ShortExtensions.operator_greaterThan(short a, byte b)
    The binary greaterThan operator.
    static boolean
    ShortExtensions.operator_greaterThan(short a, char b)
    The binary greaterThan operator.
    static boolean
    ShortExtensions.operator_greaterThan(short a, double b)
    The binary greaterThan operator.
    static boolean
    ShortExtensions.operator_greaterThan(short a, float b)
    The binary greaterThan operator.
    static boolean
    ShortExtensions.operator_greaterThan(short a, int b)
    The binary greaterThan operator.
    static boolean
    ShortExtensions.operator_greaterThan(short a, long b)
    The binary greaterThan operator.
    static boolean
    ShortExtensions.operator_greaterThan(short a, short b)
    The binary greaterThan operator.
    IntegerExtensions.operator_greaterThanDoubleDot(int a, int b)
    The >.. operator yields an ExclusiveRange that decrements from a (exclusive) down to b.
    static boolean
    BooleanExtensions.operator_lessEqualsThan(boolean a, boolean b)
    The binary lessEqualsThan operator for boolean values.
    static boolean
    ByteExtensions.operator_lessEqualsThan(byte a, byte b)
    The binary lessEqualsThan operator.
    static boolean
    ByteExtensions.operator_lessEqualsThan(byte a, char b)
    The binary lessEqualsThan operator.
    static boolean
    ByteExtensions.operator_lessEqualsThan(byte a, double b)
    The binary lessEqualsThan operator.
    static boolean
    ByteExtensions.operator_lessEqualsThan(byte a, float b)
    The binary lessEqualsThan operator.
    static boolean
    ByteExtensions.operator_lessEqualsThan(byte a, int b)
    The binary lessEqualsThan operator.
    static boolean
    ByteExtensions.operator_lessEqualsThan(byte a, long b)
    The binary lessEqualsThan operator.
    static boolean
    ByteExtensions.operator_lessEqualsThan(byte a, short b)
    The binary lessEqualsThan operator.
    static boolean
    CharacterExtensions.operator_lessEqualsThan(char a, byte b)
    The binary lessEqualsThan operator.
    static boolean
    CharacterExtensions.operator_lessEqualsThan(char a, char b)
    The binary lessEqualsThan operator.
    static boolean
    CharacterExtensions.operator_lessEqualsThan(char a, double b)
    The binary lessEqualsThan operator.
    static boolean
    CharacterExtensions.operator_lessEqualsThan(char a, float b)
    The binary lessEqualsThan operator.
    static boolean
    CharacterExtensions.operator_lessEqualsThan(char a, int b)
    The binary lessEqualsThan operator.
    static boolean
    CharacterExtensions.operator_lessEqualsThan(char a, long b)
    The binary lessEqualsThan operator.
    static boolean
    CharacterExtensions.operator_lessEqualsThan(char a, short b)
    The binary lessEqualsThan operator.
    static <C> boolean
    ComparableExtensions.operator_lessEqualsThan(Comparable<? super C> left, C right)
    The comparison operator less than or equals.
    static boolean
    DoubleExtensions.operator_lessEqualsThan(double a, byte b)
    The binary lessEqualsThan operator.
    static boolean
    DoubleExtensions.operator_lessEqualsThan(double a, char b)
    The binary lessEqualsThan operator.
    static boolean
    DoubleExtensions.operator_lessEqualsThan(double a, double b)
    The binary lessEqualsThan operator.
    static boolean
    DoubleExtensions.operator_lessEqualsThan(double a, float b)
    The binary lessEqualsThan operator.
    static boolean
    DoubleExtensions.operator_lessEqualsThan(double a, int b)
    The binary lessEqualsThan operator.
    static boolean
    DoubleExtensions.operator_lessEqualsThan(double a, long b)
    The binary lessEqualsThan operator.
    static boolean
    DoubleExtensions.operator_lessEqualsThan(double a, short b)
    The binary lessEqualsThan operator.
    static boolean
    FloatExtensions.operator_lessEqualsThan(float a, byte b)
    The binary lessEqualsThan operator.
    static boolean
    FloatExtensions.operator_lessEqualsThan(float a, char b)
    The binary lessEqualsThan operator.
    static boolean
    FloatExtensions.operator_lessEqualsThan(float a, double b)
    The binary lessEqualsThan operator.
    static boolean
    FloatExtensions.operator_lessEqualsThan(float a, float b)
    The binary lessEqualsThan operator.
    static boolean
    FloatExtensions.operator_lessEqualsThan(float a, int b)
    The binary lessEqualsThan operator.
    static boolean
    FloatExtensions.operator_lessEqualsThan(float a, long b)
    The binary lessEqualsThan operator.
    static boolean
    FloatExtensions.operator_lessEqualsThan(float a, short b)
    The binary lessEqualsThan operator.
    static boolean
    IntegerExtensions.operator_lessEqualsThan(int a, byte b)
    The binary lessEqualsThan operator.
    static boolean
    IntegerExtensions.operator_lessEqualsThan(int a, char b)
    The binary lessEqualsThan operator.
    static boolean
    IntegerExtensions.operator_lessEqualsThan(int a, double b)
    The binary lessEqualsThan operator.
    static boolean
    IntegerExtensions.operator_lessEqualsThan(int a, float b)
    The binary lessEqualsThan operator.
    static boolean
    IntegerExtensions.operator_lessEqualsThan(int a, int b)
    The binary lessEqualsThan operator.
    static boolean
    IntegerExtensions.operator_lessEqualsThan(int a, long b)
    The binary lessEqualsThan operator.
    static boolean
    IntegerExtensions.operator_lessEqualsThan(int a, short b)
    The binary lessEqualsThan operator.
    static boolean
    LongExtensions.operator_lessEqualsThan(long a, byte b)
    The binary lessEqualsThan operator.
    static boolean
    LongExtensions.operator_lessEqualsThan(long a, char b)
    The binary lessEqualsThan operator.
    static boolean
    LongExtensions.operator_lessEqualsThan(long a, double b)
    The binary lessEqualsThan operator.
    static boolean
    LongExtensions.operator_lessEqualsThan(long a, float b)
    The binary lessEqualsThan operator.
    static boolean
    LongExtensions.operator_lessEqualsThan(long a, int b)
    The binary lessEqualsThan operator.
    static boolean
    LongExtensions.operator_lessEqualsThan(long a, long b)
    The binary lessEqualsThan operator.
    static boolean
    LongExtensions.operator_lessEqualsThan(long a, short b)
    The binary lessEqualsThan operator.
    static boolean
    ShortExtensions.operator_lessEqualsThan(short a, byte b)
    The binary lessEqualsThan operator.
    static boolean
    ShortExtensions.operator_lessEqualsThan(short a, char b)
    The binary lessEqualsThan operator.
    static boolean
    ShortExtensions.operator_lessEqualsThan(short a, double b)
    The binary lessEqualsThan operator.
    static boolean
    ShortExtensions.operator_lessEqualsThan(short a, float b)
    The binary lessEqualsThan operator.
    static boolean
    ShortExtensions.operator_lessEqualsThan(short a, int b)
    The binary lessEqualsThan operator.
    static boolean
    ShortExtensions.operator_lessEqualsThan(short a, long b)
    The binary lessEqualsThan operator.
    static boolean
    ShortExtensions.operator_lessEqualsThan(short a, short b)
    The binary lessEqualsThan operator.
    static boolean
    BooleanExtensions.operator_lessThan(boolean a, boolean b)
    The binary lessThan operator for boolean values.
    static boolean
    ByteExtensions.operator_lessThan(byte a, byte b)
    The binary lessThan operator.
    static boolean
    ByteExtensions.operator_lessThan(byte a, char b)
    The binary lessThan operator.
    static boolean
    ByteExtensions.operator_lessThan(byte a, double b)
    The binary lessThan operator.
    static boolean
    ByteExtensions.operator_lessThan(byte a, float b)
    The binary lessThan operator.
    static boolean
    ByteExtensions.operator_lessThan(byte a, int b)
    The binary lessThan operator.
    static boolean
    ByteExtensions.operator_lessThan(byte a, long b)
    The binary lessThan operator.
    static boolean
    ByteExtensions.operator_lessThan(byte a, short b)
    The binary lessThan operator.
    static boolean
    CharacterExtensions.operator_lessThan(char a, byte b)
    The binary lessThan operator.
    static boolean
    CharacterExtensions.operator_lessThan(char a, char b)
    The binary lessThan operator.
    static boolean
    CharacterExtensions.operator_lessThan(char a, double b)
    The binary lessThan operator.
    static boolean
    CharacterExtensions.operator_lessThan(char a, float b)
    The binary lessThan operator.
    static boolean
    CharacterExtensions.operator_lessThan(char a, int b)
    The binary lessThan operator.
    static boolean
    CharacterExtensions.operator_lessThan(char a, long b)
    The binary lessThan operator.
    static boolean
    CharacterExtensions.operator_lessThan(char a, short b)
    The binary lessThan operator.
    static <C> boolean
    ComparableExtensions.operator_lessThan(Comparable<? super C> left, C right)
    The comparison operator less than.
    static boolean
    DoubleExtensions.operator_lessThan(double a, byte b)
    The binary lessThan operator.
    static boolean
    DoubleExtensions.operator_lessThan(double a, char b)
    The binary lessThan operator.
    static boolean
    DoubleExtensions.operator_lessThan(double a, double b)
    The binary lessThan operator.
    static boolean
    DoubleExtensions.operator_lessThan(double a, float b)
    The binary lessThan operator.
    static boolean
    DoubleExtensions.operator_lessThan(double a, int b)
    The binary lessThan operator.
    static boolean
    DoubleExtensions.operator_lessThan(double a, long b)
    The binary lessThan operator.
    static boolean
    DoubleExtensions.operator_lessThan(double a, short b)
    The binary lessThan operator.
    static boolean
    FloatExtensions.operator_lessThan(float a, byte b)
    The binary lessThan operator.
    static boolean
    FloatExtensions.operator_lessThan(float a, char b)
    The binary lessThan operator.
    static boolean
    FloatExtensions.operator_lessThan(float a, double b)
    The binary lessThan operator.
    static boolean
    FloatExtensions.operator_lessThan(float a, float b)
    The binary lessThan operator.
    static boolean
    FloatExtensions.operator_lessThan(float a, int b)
    The binary lessThan operator.
    static boolean
    FloatExtensions.operator_lessThan(float a, long b)
    The binary lessThan operator.
    static boolean
    FloatExtensions.operator_lessThan(float a, short b)
    The binary lessThan operator.
    static boolean
    IntegerExtensions.operator_lessThan(int a, byte b)
    The binary lessThan operator.
    static boolean
    IntegerExtensions.operator_lessThan(int a, char b)
    The binary lessThan operator.
    static boolean
    IntegerExtensions.operator_lessThan(int a, double b)
    The binary lessThan operator.
    static boolean
    IntegerExtensions.operator_lessThan(int a, float b)
    The binary lessThan operator.
    static boolean
    IntegerExtensions.operator_lessThan(int a, int b)
    The binary lessThan operator.
    static boolean
    IntegerExtensions.operator_lessThan(int a, long b)
    The binary lessThan operator.
    static boolean
    IntegerExtensions.operator_lessThan(int a, short b)
    The binary lessThan operator.
    static boolean
    LongExtensions.operator_lessThan(long a, byte b)
    The binary lessThan operator.
    static boolean
    LongExtensions.operator_lessThan(long a, char b)
    The binary lessThan operator.
    static boolean
    LongExtensions.operator_lessThan(long a, double b)
    The binary lessThan operator.
    static boolean
    LongExtensions.operator_lessThan(long a, float b)
    The binary lessThan operator.
    static boolean
    LongExtensions.operator_lessThan(long a, int b)
    The binary lessThan operator.
    static boolean
    LongExtensions.operator_lessThan(long a, long b)
    The binary lessThan operator.
    static boolean
    LongExtensions.operator_lessThan(long a, short b)
    The binary lessThan operator.
    static boolean
    ShortExtensions.operator_lessThan(short a, byte b)
    The binary lessThan operator.
    static boolean
    ShortExtensions.operator_lessThan(short a, char b)
    The binary lessThan operator.
    static boolean
    ShortExtensions.operator_lessThan(short a, double b)
    The binary lessThan operator.
    static boolean
    ShortExtensions.operator_lessThan(short a, float b)
    The binary lessThan operator.
    static boolean
    ShortExtensions.operator_lessThan(short a, int b)
    The binary lessThan operator.
    static boolean
    ShortExtensions.operator_lessThan(short a, long b)
    The binary lessThan operator.
    static boolean
    ShortExtensions.operator_lessThan(short a, short b)
    The binary lessThan operator.
    static <A, B> Pair<A,B>
    ObjectExtensions.operator_mappedTo(A a, B b)
    The mappedTo operator yields a Pair with a as the key and b as its value.
    static BigDecimal
    BigDecimalExtensions.operator_minus(BigDecimal a)
    The unary minus operator.
    static BigDecimal
    BigDecimalExtensions.operator_minus(BigDecimal a, BigDecimal b)
    The binary minus operator.
    static BigInteger
    BigIntegerExtensions.operator_minus(BigInteger a)
    The unary minus operator.
    static BigInteger
    BigIntegerExtensions.operator_minus(BigInteger a, BigInteger b)
    The binary minus operator.
    static int
    ByteExtensions.operator_minus(byte b)
    The unary minus operator.
    static int
    ByteExtensions.operator_minus(byte a, byte b)
    The binary minus operator.
    static int
    ByteExtensions.operator_minus(byte a, char b)
    The binary minus operator.
    static double
    ByteExtensions.operator_minus(byte a, double b)
    The binary minus operator.
    static float
    ByteExtensions.operator_minus(byte a, float b)
    The binary minus operator.
    static int
    ByteExtensions.operator_minus(byte a, int b)
    The binary minus operator.
    static long
    ByteExtensions.operator_minus(byte a, long b)
    The binary minus operator.
    static int
    ByteExtensions.operator_minus(byte a, short b)
    The binary minus operator.
    static int
    CharacterExtensions.operator_minus(char c)
    The unary minus operator.
    static int
    CharacterExtensions.operator_minus(char a, byte b)
    The binary minus operator.
    static int
    CharacterExtensions.operator_minus(char a, char b)
    The binary minus operator.
    static double
    CharacterExtensions.operator_minus(char a, double b)
    The binary minus operator.
    static float
    CharacterExtensions.operator_minus(char a, float b)
    The binary minus operator.
    static int
    CharacterExtensions.operator_minus(char a, int b)
    The binary minus operator.
    static long
    CharacterExtensions.operator_minus(char a, long b)
    The binary minus operator.
    static int
    CharacterExtensions.operator_minus(char a, short b)
    The binary minus operator.
    static double
    DoubleExtensions.operator_minus(double d)
    The unary minus operator.
    static double
    DoubleExtensions.operator_minus(double a, byte b)
    The binary minus operator.
    static double
    DoubleExtensions.operator_minus(double a, char b)
    The binary minus operator.
    static double
    DoubleExtensions.operator_minus(double a, double b)
    The binary minus operator.
    static double
    DoubleExtensions.operator_minus(double a, float b)
    The binary minus operator.
    static double
    DoubleExtensions.operator_minus(double a, int b)
    The binary minus operator.
    static double
    DoubleExtensions.operator_minus(double a, long b)
    The binary minus operator.
    static double
    DoubleExtensions.operator_minus(double a, short b)
    The binary minus operator.
    static double
    DoubleExtensions.operator_minus(Double a)
    The unary minus operator.
    static double
    DoubleExtensions.operator_minus(Double a, Number b)
    The binary minus operator.
    static float
    FloatExtensions.operator_minus(float f)
    The unary minus operator.
    static float
    FloatExtensions.operator_minus(float a, byte b)
    The binary minus operator.
    static float
    FloatExtensions.operator_minus(float a, char b)
    The binary minus operator.
    static double
    FloatExtensions.operator_minus(float a, double b)
    The binary minus operator.
    static float
    FloatExtensions.operator_minus(float a, float b)
    The binary minus operator.
    static float
    FloatExtensions.operator_minus(float a, int b)
    The binary minus operator.
    static float
    FloatExtensions.operator_minus(float a, long b)
    The binary minus operator.
    static float
    FloatExtensions.operator_minus(float a, short b)
    The binary minus operator.
    static int
    IntegerExtensions.operator_minus(int i)
    The unary minus operator.
    static int
    IntegerExtensions.operator_minus(int a, byte b)
    The binary minus operator.
    static int
    IntegerExtensions.operator_minus(int a, char b)
    The binary minus operator.
    static double
    IntegerExtensions.operator_minus(int a, double b)
    The binary minus operator.
    static float
    IntegerExtensions.operator_minus(int a, float b)
    The binary minus operator.
    static int
    IntegerExtensions.operator_minus(int a, int b)
    The binary minus operator.
    static long
    IntegerExtensions.operator_minus(int a, long b)
    The binary minus operator.
    static int
    IntegerExtensions.operator_minus(int a, short b)
    The binary minus operator.
    static long
    LongExtensions.operator_minus(long l)
    The unary minus operator.
    static long
    LongExtensions.operator_minus(long a, byte b)
    The binary minus operator.
    static long
    LongExtensions.operator_minus(long a, char b)
    The binary minus operator.
    static double
    LongExtensions.operator_minus(long a, double b)
    The binary minus operator.
    static float
    LongExtensions.operator_minus(long a, float b)
    The binary minus operator.
    static long
    LongExtensions.operator_minus(long a, int b)
    The binary minus operator.
    static long
    LongExtensions.operator_minus(long a, long b)
    The binary minus operator.
    static long
    LongExtensions.operator_minus(long a, short b)
    The binary minus operator.
    static <K, V> Map<K,V>
    MapExtensions.operator_minus(Map<K,V> map, Iterable<?> keys)
    Replies the elements of the given map except the pairs with the given keys.
    static <K, V> Map<K,V>
    MapExtensions.operator_minus(Map<K,V> left, Map<? extends K,? extends V> right)
    Replies the elements of the left map without the pairs in the right map.
    static <K, V> Map<K,V>
    MapExtensions.operator_minus(Map<K,V> map, K key)
    Replies the elements of the given map except the pair with the given key.
    static <K, V> Map<K,V>
    MapExtensions.operator_minus(Map<K,V> left, Pair<? extends K,? extends V> right)
    Remove the given pair from a given map for obtaining a new map.
    static int
    ShortExtensions.operator_minus(short s)
    The unary minus operator.
    static int
    ShortExtensions.operator_minus(short a, byte b)
    The binary minus operator.
    static int
    ShortExtensions.operator_minus(short a, char b)
    The binary minus operator.
    static double
    ShortExtensions.operator_minus(short a, double b)
    The binary minus operator.
    static float
    ShortExtensions.operator_minus(short a, float b)
    The binary minus operator.
    static int
    ShortExtensions.operator_minus(short a, int b)
    The binary minus operator.
    static long
    ShortExtensions.operator_minus(short a, long b)
    The binary minus operator.
    static int
    ShortExtensions.operator_minus(short a, short b)
    The binary minus operator.
    static BigInteger
    BigIntegerExtensions.operator_modulo(BigInteger a, BigInteger b)
    The binary modulo operator.
    static int
    ByteExtensions.operator_modulo(byte a, byte b)
    The binary modulo operator.
    static int
    ByteExtensions.operator_modulo(byte a, char b)
    The binary modulo operator.
    static double
    ByteExtensions.operator_modulo(byte a, double b)
    The binary modulo operator.
    static float
    ByteExtensions.operator_modulo(byte a, float b)
    The binary modulo operator.
    static int
    ByteExtensions.operator_modulo(byte a, int b)
    The binary modulo operator.
    static long
    ByteExtensions.operator_modulo(byte a, long b)
    The binary modulo operator.
    static int
    ByteExtensions.operator_modulo(byte a, short b)
    The binary modulo operator.
    static int
    CharacterExtensions.operator_modulo(char a, byte b)
    The binary modulo operator.
    static int
    CharacterExtensions.operator_modulo(char a, char b)
    The binary modulo operator.
    static double
    CharacterExtensions.operator_modulo(char a, double b)
    The binary modulo operator.
    static float
    CharacterExtensions.operator_modulo(char a, float b)
    The binary modulo operator.
    static int
    CharacterExtensions.operator_modulo(char a, int b)
    The binary modulo operator.
    static long
    CharacterExtensions.operator_modulo(char a, long b)
    The binary modulo operator.
    static int
    CharacterExtensions.operator_modulo(char a, short b)
    The binary modulo operator.
    static double
    DoubleExtensions.operator_modulo(double a, byte b)
    The binary modulo operator.
    static double
    DoubleExtensions.operator_modulo(double a, char b)
    The binary modulo operator.
    static double
    DoubleExtensions.operator_modulo(double a, double b)
    The binary modulo operator.
    static double
    DoubleExtensions.operator_modulo(double a, float b)
    The binary modulo operator.
    static double
    DoubleExtensions.operator_modulo(double a, int b)
    The binary modulo operator.
    static double
    DoubleExtensions.operator_modulo(double a, long b)
    The binary modulo operator.
    static double
    DoubleExtensions.operator_modulo(double a, short b)
    The binary modulo operator.
    static float
    FloatExtensions.operator_modulo(float a, byte b)
    The binary modulo operator.
    static float
    FloatExtensions.operator_modulo(float a, char b)
    The binary modulo operator.
    static double
    FloatExtensions.operator_modulo(float a, double b)
    The binary modulo operator.
    static float
    FloatExtensions.operator_modulo(float a, float b)
    The binary modulo operator.
    static float
    FloatExtensions.operator_modulo(float a, int b)
    The binary modulo operator.
    static float
    FloatExtensions.operator_modulo(float a, long b)
    The binary modulo operator.
    static float
    FloatExtensions.operator_modulo(float a, short b)
    The binary modulo operator.
    static int
    IntegerExtensions.operator_modulo(int a, byte b)
    The binary modulo operator.
    static int
    IntegerExtensions.operator_modulo(int a, char b)
    The binary modulo operator.
    static double
    IntegerExtensions.operator_modulo(int a, double b)
    The binary modulo operator.
    static float
    IntegerExtensions.operator_modulo(int a, float b)
    The binary modulo operator.
    static int
    IntegerExtensions.operator_modulo(int a, int b)
    The binary modulo operator.
    static long
    IntegerExtensions.operator_modulo(int a, long b)
    The binary modulo operator.
    static int
    IntegerExtensions.operator_modulo(int a, short b)
    The binary modulo operator.
    static long
    LongExtensions.operator_modulo(long a, byte b)
    The binary modulo operator.
    static long
    LongExtensions.operator_modulo(long a, char b)
    The binary modulo operator.
    static double
    LongExtensions.operator_modulo(long a, double b)
    The binary modulo operator.
    static float
    LongExtensions.operator_modulo(long a, float b)
    The binary modulo operator.
    static long
    LongExtensions.operator_modulo(long a, int b)
    The binary modulo operator.
    static long
    LongExtensions.operator_modulo(long a, long b)
    The binary modulo operator.
    static long
    LongExtensions.operator_modulo(long a, short b)
    The binary modulo operator.
    static int
    ShortExtensions.operator_modulo(short a, byte b)
    The binary modulo operator.
    static int
    ShortExtensions.operator_modulo(short a, char b)
    The binary modulo operator.
    static double
    ShortExtensions.operator_modulo(short a, double b)
    The binary modulo operator.
    static float
    ShortExtensions.operator_modulo(short a, float b)
    The binary modulo operator.
    static int
    ShortExtensions.operator_modulo(short a, int b)
    The binary modulo operator.
    static long
    ShortExtensions.operator_modulo(short a, long b)
    The binary modulo operator.
    static int
    ShortExtensions.operator_modulo(short a, short b)
    The binary modulo operator.
    static BigDecimal
    BigDecimalExtensions.operator_multiply(BigDecimal a, BigDecimal b)
    The binary times operator.
    static BigInteger
    BigIntegerExtensions.operator_multiply(BigInteger a, BigInteger b)
    The binary times operator.
    static int
    ByteExtensions.operator_multiply(byte a, byte b)
    The binary multiply operator.
    static int
    ByteExtensions.operator_multiply(byte a, char b)
    The binary multiply operator.
    static double
    ByteExtensions.operator_multiply(byte a, double b)
    The binary multiply operator.
    static float
    ByteExtensions.operator_multiply(byte a, float b)
    The binary multiply operator.
    static int
    ByteExtensions.operator_multiply(byte a, int b)
    The binary multiply operator.
    static long
    ByteExtensions.operator_multiply(byte a, long b)
    The binary multiply operator.
    static int
    ByteExtensions.operator_multiply(byte a, short b)
    The binary multiply operator.
    static int
    CharacterExtensions.operator_multiply(char a, byte b)
    The binary multiply operator.
    static int
    CharacterExtensions.operator_multiply(char a, char b)
    The binary multiply operator.
    static double
    CharacterExtensions.operator_multiply(char a, double b)
    The binary multiply operator.
    static float
    CharacterExtensions.operator_multiply(char a, float b)
    The binary multiply operator.
    static int
    CharacterExtensions.operator_multiply(char a, int b)
    The binary multiply operator.
    static long
    CharacterExtensions.operator_multiply(char a, long b)
    The binary multiply operator.
    static int
    CharacterExtensions.operator_multiply(char a, short b)
    The binary multiply operator.
    static double
    DoubleExtensions.operator_multiply(double a, byte b)
    The binary multiply operator.
    static double
    DoubleExtensions.operator_multiply(double a, char b)
    The binary multiply operator.
    static double
    DoubleExtensions.operator_multiply(double a, double b)
    The binary multiply operator.
    static double
    DoubleExtensions.operator_multiply(double a, float b)
    The binary multiply operator.
    static double
    DoubleExtensions.operator_multiply(double a, int b)
    The binary multiply operator.
    static double
    DoubleExtensions.operator_multiply(double a, long b)
    The binary multiply operator.
    static double
    DoubleExtensions.operator_multiply(double a, short b)
    The binary multiply operator.
    static float
    FloatExtensions.operator_multiply(float a, byte b)
    The binary multiply operator.
    static float
    FloatExtensions.operator_multiply(float a, char b)
    The binary multiply operator.
    static double
    FloatExtensions.operator_multiply(float a, double b)
    The binary multiply operator.
    static float
    FloatExtensions.operator_multiply(float a, float b)
    The binary multiply operator.
    static float
    FloatExtensions.operator_multiply(float a, int b)
    The binary multiply operator.
    static float
    FloatExtensions.operator_multiply(float a, long b)
    The binary multiply operator.
    static float
    FloatExtensions.operator_multiply(float a, short b)
    The binary multiply operator.
    static int
    IntegerExtensions.operator_multiply(int a, byte b)
    The binary multiply operator.
    static int
    IntegerExtensions.operator_multiply(int a, char b)
    The binary multiply operator.
    static double
    IntegerExtensions.operator_multiply(int a, double b)
    The binary multiply operator.
    static float
    IntegerExtensions.operator_multiply(int a, float b)
    The binary multiply operator.
    static int
    IntegerExtensions.operator_multiply(int a, int b)
    The binary multiply operator.
    static long
    IntegerExtensions.operator_multiply(int a, long b)
    The binary multiply operator.
    static int
    IntegerExtensions.operator_multiply(int a, short b)
    The binary multiply operator.
    static long
    LongExtensions.operator_multiply(long a, byte b)
    The binary multiply operator.
    static long
    LongExtensions.operator_multiply(long a, char b)
    The binary multiply operator.
    static double
    LongExtensions.operator_multiply(long a, double b)
    The binary multiply operator.
    static float
    LongExtensions.operator_multiply(long a, float b)
    The binary multiply operator.
    static long
    LongExtensions.operator_multiply(long a, int b)
    The binary multiply operator.
    static long
    LongExtensions.operator_multiply(long a, long b)
    The binary multiply operator.
    static long
    LongExtensions.operator_multiply(long a, short b)
    The binary multiply operator.
    static int
    ShortExtensions.operator_multiply(short a, byte b)
    The binary multiply operator.
    static int
    ShortExtensions.operator_multiply(short a, char b)
    The binary multiply operator.
    static double
    ShortExtensions.operator_multiply(short a, double b)
    The binary multiply operator.
    static float
    ShortExtensions.operator_multiply(short a, float b)
    The binary multiply operator.
    static int
    ShortExtensions.operator_multiply(short a, int b)
    The binary multiply operator.
    static long
    ShortExtensions.operator_multiply(short a, long b)
    The binary multiply operator.
    static int
    ShortExtensions.operator_multiply(short a, short b)
    The binary multiply operator.
    static boolean
    BooleanExtensions.operator_not(boolean b)
    The logical not (negation).
    static boolean
    BooleanExtensions.operator_notEquals(boolean a, boolean b)
    The binary not equals operator.
    static boolean
    ByteExtensions.operator_notEquals(byte a, byte b)
    The binary notEquals operator.
    static boolean
    ByteExtensions.operator_notEquals(byte a, char b)
    The binary notEquals operator.
    static boolean
    ByteExtensions.operator_notEquals(byte a, double b)
    The binary notEquals operator.
    static boolean
    ByteExtensions.operator_notEquals(byte a, float b)
    The binary notEquals operator.
    static boolean
    ByteExtensions.operator_notEquals(byte a, int b)
    The binary notEquals operator.
    static boolean
    ByteExtensions.operator_notEquals(byte a, long b)
    The binary notEquals operator.
    static boolean
    ByteExtensions.operator_notEquals(byte a, short b)
    The binary notEquals operator.
    static boolean
    CharacterExtensions.operator_notEquals(char a, byte b)
    The binary notEquals operator.
    static boolean
    CharacterExtensions.operator_notEquals(char a, char b)
    The binary notEquals operator.
    static boolean
    CharacterExtensions.operator_notEquals(char a, double b)
    The binary notEquals operator.
    static boolean
    CharacterExtensions.operator_notEquals(char a, float b)
    The binary notEquals operator.
    static boolean
    CharacterExtensions.operator_notEquals(char a, int b)
    The binary notEquals operator.
    static boolean
    CharacterExtensions.operator_notEquals(char a, long b)
    The binary notEquals operator.
    static boolean
    CharacterExtensions.operator_notEquals(char a, short b)
    The binary notEquals operator.
    static boolean
    DoubleExtensions.operator_notEquals(double a, byte b)
    The binary notEquals operator.
    static boolean
    DoubleExtensions.operator_notEquals(double a, char b)
    The binary notEquals operator.
    static boolean
    DoubleExtensions.operator_notEquals(double a, double b)
    The binary notEquals operator.
    static boolean
    DoubleExtensions.operator_notEquals(double a, float b)
    The binary notEquals operator.
    static boolean
    DoubleExtensions.operator_notEquals(double a, int b)
    The binary notEquals operator.
    static boolean
    DoubleExtensions.operator_notEquals(double a, long b)
    The binary notEquals operator.
    static boolean
    DoubleExtensions.operator_notEquals(double a, short b)
    The binary notEquals operator.
    static boolean
    FloatExtensions.operator_notEquals(float a, byte b)
    The binary notEquals operator.
    static boolean
    FloatExtensions.operator_notEquals(float a, char b)
    The binary notEquals operator.
    static boolean
    FloatExtensions.operator_notEquals(float a, double b)
    The binary notEquals operator.
    static boolean
    FloatExtensions.operator_notEquals(float a, float b)
    The binary notEquals operator.
    static boolean
    FloatExtensions.operator_notEquals(float a, int b)
    The binary notEquals operator.
    static boolean
    FloatExtensions.operator_notEquals(float a, long b)
    The binary notEquals operator.
    static boolean
    FloatExtensions.operator_notEquals(float a, short b)
    The binary notEquals operator.
    static boolean
    IntegerExtensions.operator_notEquals(int a, byte b)
    The binary notEquals operator.
    static boolean
    IntegerExtensions.operator_notEquals(int a, char b)
    The binary notEquals operator.
    static boolean
    IntegerExtensions.operator_notEquals(int a, double b)
    The binary notEquals operator.
    static boolean
    IntegerExtensions.operator_notEquals(int a, float b)
    The binary notEquals operator.
    static boolean
    IntegerExtensions.operator_notEquals(int a, int b)
    The binary notEquals operator.
    static boolean
    IntegerExtensions.operator_notEquals(int a, long b)
    The binary notEquals operator.
    static boolean
    IntegerExtensions.operator_notEquals(int a, short b)
    The binary notEquals operator.
    static boolean
    LongExtensions.operator_notEquals(long a, byte b)
    The binary notEquals operator.
    static boolean
    LongExtensions.operator_notEquals(long a, char b)
    The binary notEquals operator.
    static boolean
    LongExtensions.operator_notEquals(long a, double b)
    The binary notEquals operator.
    static boolean
    LongExtensions.operator_notEquals(long a, float b)
    The binary notEquals operator.
    static boolean
    LongExtensions.operator_notEquals(long a, int b)
    The binary notEquals operator.
    static boolean
    LongExtensions.operator_notEquals(long a, long b)
    The binary notEquals operator.
    static boolean
    LongExtensions.operator_notEquals(long a, short b)
    The binary notEquals operator.
    static boolean
    ObjectExtensions.operator_notEquals(Object a, Object b)
    The equals not operator.
    static boolean
    ShortExtensions.operator_notEquals(short a, byte b)
    The binary notEquals operator.
    static boolean
    ShortExtensions.operator_notEquals(short a, char b)
    The binary notEquals operator.
    static boolean
    ShortExtensions.operator_notEquals(short a, double b)
    The binary notEquals operator.
    static boolean
    ShortExtensions.operator_notEquals(short a, float b)
    The binary notEquals operator.
    static boolean
    ShortExtensions.operator_notEquals(short a, int b)
    The binary notEquals operator.
    static boolean
    ShortExtensions.operator_notEquals(short a, long b)
    The binary notEquals operator.
    static boolean
    ShortExtensions.operator_notEquals(short a, short b)
    The binary notEquals operator.
    static boolean
    BooleanExtensions.operator_or(boolean a, boolean b)
    A logical or (disjunction).
    static BigDecimal
    BigDecimalExtensions.operator_plus(BigDecimal a, BigDecimal b)
    The binary plus operator.
    static BigInteger
    BigIntegerExtensions.operator_plus(BigInteger a, BigInteger b)
    The binary plus operator.
    static int
    ByteExtensions.operator_plus(byte a, byte b)
    The binary plus operator.
    static int
    ByteExtensions.operator_plus(byte a, char b)
    The binary plus operator.
    static double
    ByteExtensions.operator_plus(byte a, double b)
    The binary plus operator.
    static float
    ByteExtensions.operator_plus(byte a, float b)
    The binary plus operator.
    static int
    ByteExtensions.operator_plus(byte a, int b)
    The binary plus operator.
    static long
    ByteExtensions.operator_plus(byte a, long b)
    The binary plus operator.
    static int
    ByteExtensions.operator_plus(byte a, short b)
    The binary plus operator.
    static int
    CharacterExtensions.operator_plus(char a, byte b)
    The binary plus operator.
    static int
    CharacterExtensions.operator_plus(char a, char b)
    The binary plus operator.
    static double
    CharacterExtensions.operator_plus(char a, double b)
    The binary plus operator.
    static float
    CharacterExtensions.operator_plus(char a, float b)
    The binary plus operator.
    static int
    CharacterExtensions.operator_plus(char a, int b)
    The binary plus operator.
    static long
    CharacterExtensions.operator_plus(char a, long b)
    The binary plus operator.
    static int
    CharacterExtensions.operator_plus(char a, short b)
    The binary plus operator.
    static double
    DoubleExtensions.operator_plus(double a, byte b)
    The binary plus operator.
    static double
    DoubleExtensions.operator_plus(double a, char b)
    The binary plus operator.
    static double
    DoubleExtensions.operator_plus(double a, double b)
    The binary plus operator.
    static double
    DoubleExtensions.operator_plus(double a, float b)
    The binary plus operator.
    static double
    DoubleExtensions.operator_plus(double a, int b)
    The binary plus operator.
    static double
    DoubleExtensions.operator_plus(double a, long b)
    The binary plus operator.
    static double
    DoubleExtensions.operator_plus(double a, short b)
    The binary plus operator.
    static double
    DoubleExtensions.operator_plus(Double a, Number b)
    The binary plus operator.
    static float
    FloatExtensions.operator_plus(float a, byte b)
    The binary plus operator.
    static float
    FloatExtensions.operator_plus(float a, char b)
    The binary plus operator.
    static double
    FloatExtensions.operator_plus(float a, double b)
    The binary plus operator.
    static float
    FloatExtensions.operator_plus(float a, float b)
    The binary plus operator.
    static float
    FloatExtensions.operator_plus(float a, int b)
    The binary plus operator.
    static float
    FloatExtensions.operator_plus(float a, long b)
    The binary plus operator.
    static float
    FloatExtensions.operator_plus(float a, short b)
    The binary plus operator.
    static int
    IntegerExtensions.operator_plus(int a, byte b)
    The binary plus operator.
    static int
    IntegerExtensions.operator_plus(int a, char b)
    The binary plus operator.
    static double
    IntegerExtensions.operator_plus(int a, double b)
    The binary plus operator.
    static float
    IntegerExtensions.operator_plus(int a, float b)
    The binary plus operator.
    static int
    IntegerExtensions.operator_plus(int a, int b)
    The binary plus operator.
    static long
    IntegerExtensions.operator_plus(int a, long b)
    The binary plus operator.
    static int
    IntegerExtensions.operator_plus(int a, short b)
    The binary plus operator.
    static <T> Iterable<T>
    IterableExtensions.operator_plus(Iterable<? extends T> a, Iterable<? extends T> b)
    Concatenates two iterables into a single iterable.
    static <T> Iterator<T>
    IteratorExtensions.operator_plus(Iterator<? extends T> a, Iterator<? extends T> b)
    Concatenates two iterators into a single iterator.
    static long
    LongExtensions.operator_plus(long a, byte b)
    The binary plus operator.
    static long
    LongExtensions.operator_plus(long a, char b)
    The binary plus operator.
    static double
    LongExtensions.operator_plus(long a, double b)
    The binary plus operator.
    static float
    LongExtensions.operator_plus(long a, float b)
    The binary plus operator.
    static long
    LongExtensions.operator_plus(long a, int b)
    The binary plus operator.
    static long
    LongExtensions.operator_plus(long a, long b)
    The binary plus operator.
    static long
    LongExtensions.operator_plus(long a, short b)
    The binary plus operator.
    static <K, V> Map<K,V>
    MapExtensions.operator_plus(Map<K,V> left, Map<? extends K,? extends V> right)
    Merge the two maps.
    static <K, V> Map<K,V>
    MapExtensions.operator_plus(Map<K,V> left, Pair<? extends K,? extends V> right)
    Add the given pair to a given map for obtaining a new map.
    static String
    ObjectExtensions.operator_plus(Object a, String b)
    The binary + operator that concatenates two strings.
    static int
    ShortExtensions.operator_plus(short a, byte b)
    The binary plus operator.
    static int
    ShortExtensions.operator_plus(short a, char b)
    The binary plus operator.
    static double
    ShortExtensions.operator_plus(short a, double b)
    The binary plus operator.
    static float
    ShortExtensions.operator_plus(short a, float b)
    The binary plus operator.
    static int
    ShortExtensions.operator_plus(short a, int b)
    The binary plus operator.
    static long
    ShortExtensions.operator_plus(short a, long b)
    The binary plus operator.
    static int
    ShortExtensions.operator_plus(short a, short b)
    The binary plus operator.
    static String
    StringExtensions.operator_plus(String a, Object b)
    The binary + operator that concatenates a string and the string reprentation of an object.
    static String
    StringExtensions.operator_plus(String a, String b)
    The binary + operator that concatenates two strings.
    static BigDecimal
    BigDecimalExtensions.operator_power(BigDecimal a, int exponent)
    The power operator.
    static BigInteger
    BigIntegerExtensions.operator_power(BigInteger a, int exponent)
    The power operator.
    static double
    ByteExtensions.operator_power(byte a, byte b)
    The binary power operator.
    static double
    ByteExtensions.operator_power(byte a, char b)
    The binary power operator.
    static double
    ByteExtensions.operator_power(byte a, double b)
    The binary power operator.
    static double
    ByteExtensions.operator_power(byte a, float b)
    The binary power operator.
    static double
    ByteExtensions.operator_power(byte a, int b)
    The binary power operator.
    static double
    ByteExtensions.operator_power(byte a, long b)
    The binary power operator.
    static double
    ByteExtensions.operator_power(byte a, short b)
    The binary power operator.
    static double
    CharacterExtensions.operator_power(char a, byte b)
    The binary power operator.
    static double
    CharacterExtensions.operator_power(char a, char b)
    The binary power operator.
    static double
    CharacterExtensions.operator_power(char a, double b)
    The binary power operator.
    static double
    CharacterExtensions.operator_power(char a, float b)
    The binary power operator.
    static double
    CharacterExtensions.operator_power(char a, int b)
    The binary power operator.
    static double
    CharacterExtensions.operator_power(char a, long b)
    The binary power operator.
    static double
    CharacterExtensions.operator_power(char a, short b)
    The binary power operator.
    static double
    DoubleExtensions.operator_power(double a, byte b)
    The binary power operator.
    static double
    DoubleExtensions.operator_power(double a, char b)
    The binary power operator.
    static double
    DoubleExtensions.operator_power(double a, double b)
    The binary power operator.
    static double
    DoubleExtensions.operator_power(double a, float b)
    The binary power operator.
    static double
    DoubleExtensions.operator_power(double a, int b)
    The binary power operator.
    static double
    DoubleExtensions.operator_power(double a, long b)
    The binary power operator.
    static double
    DoubleExtensions.operator_power(double a, short b)
    The binary power operator.
    static double
    DoubleExtensions.operator_power(Double a, Number b)
    The power operator.
    static double
    FloatExtensions.operator_power(float a, byte b)
    The binary power operator.
    static double
    FloatExtensions.operator_power(float a, char b)
    The binary power operator.
    static double
    FloatExtensions.operator_power(float a, double b)
    The binary power operator.
    static double
    FloatExtensions.operator_power(float a, float b)
    The binary power operator.
    static double
    FloatExtensions.operator_power(float a, int b)
    The binary power operator.
    static double
    FloatExtensions.operator_power(float a, long b)
    The binary power operator.
    static double
    FloatExtensions.operator_power(float a, short b)
    The binary power operator.
    static double
    IntegerExtensions.operator_power(int a, byte b)
    The binary power operator.
    static double
    IntegerExtensions.operator_power(int a, char b)
    The binary power operator.
    static double
    IntegerExtensions.operator_power(int a, double b)
    The binary power operator.
    static double
    IntegerExtensions.operator_power(int a, float b)
    The binary power operator.
    static double
    IntegerExtensions.operator_power(int a, int b)
    The binary power operator.
    static double
    IntegerExtensions.operator_power(int a, long b)
    The binary power operator.
    static double
    IntegerExtensions.operator_power(int a, short b)
    The binary power operator.
    static double
    LongExtensions.operator_power(long a, byte b)
    The binary power operator.
    static double
    LongExtensions.operator_power(long a, char b)
    The binary power operator.
    static double
    LongExtensions.operator_power(long a, double b)
    The binary power operator.
    static double
    LongExtensions.operator_power(long a, float b)
    The binary power operator.
    static double
    LongExtensions.operator_power(long a, int b)
    The binary power operator.
    static double
    LongExtensions.operator_power(long a, long b)
    The binary power operator.
    static double
    LongExtensions.operator_power(long a, short b)
    The binary power operator.
    static double
    ShortExtensions.operator_power(short a, byte b)
    The binary power operator.
    static double
    ShortExtensions.operator_power(short a, char b)
    The binary power operator.
    static double
    ShortExtensions.operator_power(short a, double b)
    The binary power operator.
    static double
    ShortExtensions.operator_power(short a, float b)
    The binary power operator.
    static double
    ShortExtensions.operator_power(short a, int b)
    The binary power operator.
    static double
    ShortExtensions.operator_power(short a, long b)
    The binary power operator.
    static double
    ShortExtensions.operator_power(short a, short b)
    The binary power operator.
    static <C> int
    ComparableExtensions.operator_spaceship(Comparable<? super C> left, C right)
    The spaceship operator <=>.
    static boolean
    ByteExtensions.operator_tripleEquals(byte a, byte b)
    The identity equals operator.
    static boolean
    ByteExtensions.operator_tripleEquals(byte a, char b)
    The identity equals operator.
    static boolean
    ByteExtensions.operator_tripleEquals(byte a, double b)
    The identity equals operator.
    static boolean
    ByteExtensions.operator_tripleEquals(byte a, float b)
    The identity equals operator.
    static boolean
    ByteExtensions.operator_tripleEquals(byte a, int b)
    The identity equals operator.
    static boolean
    ByteExtensions.operator_tripleEquals(byte a, long b)
    The identity equals operator.
    static boolean
    ByteExtensions.operator_tripleEquals(byte a, short b)
    The identity equals operator.
    static boolean
    CharacterExtensions.operator_tripleEquals(char a, byte b)
    The identity equals operator.
    static boolean
    CharacterExtensions.operator_tripleEquals(char a, char b)
    The identity equals operator.
    static boolean
    CharacterExtensions.operator_tripleEquals(char a, double b)
    The identity equals operator.
    static boolean
    CharacterExtensions.operator_tripleEquals(char a, float b)
    The identity equals operator.
    static boolean
    CharacterExtensions.operator_tripleEquals(char a, int b)
    The identity equals operator.
    static boolean
    CharacterExtensions.operator_tripleEquals(char a, long b)
    The identity equals operator.
    static boolean
    CharacterExtensions.operator_tripleEquals(char a, short b)
    The identity equals operator.
    static boolean
    DoubleExtensions.operator_tripleEquals(double a, byte b)
    The identity equals operator.
    static boolean
    DoubleExtensions.operator_tripleEquals(double a, char b)
    The identity equals operator.
    static boolean
    DoubleExtensions.operator_tripleEquals(double a, double b)
    The identity equals operator.
    static boolean
    DoubleExtensions.operator_tripleEquals(double a, float b)
    The identity equals operator.
    static boolean
    DoubleExtensions.operator_tripleEquals(double a, int b)
    The identity equals operator.
    static boolean
    DoubleExtensions.operator_tripleEquals(double a, long b)
    The identity equals operator.
    static boolean
    DoubleExtensions.operator_tripleEquals(double a, short b)
    The identity equals operator.
    static boolean
    FloatExtensions.operator_tripleEquals(float a, byte b)
    The identity equals operator.
    static boolean
    FloatExtensions.operator_tripleEquals(float a, char b)
    The identity equals operator.
    static boolean
    FloatExtensions.operator_tripleEquals(float a, double b)
    The identity equals operator.
    static boolean
    FloatExtensions.operator_tripleEquals(float a, float b)
    The identity equals operator.
    static boolean
    FloatExtensions.operator_tripleEquals(float a, int b)
    The identity equals operator.
    static boolean
    FloatExtensions.operator_tripleEquals(float a, long b)
    The identity equals operator.
    static boolean
    FloatExtensions.operator_tripleEquals(float a, short b)
    The identity equals operator.
    static boolean
    IntegerExtensions.operator_tripleEquals(int a, byte b)
    The identity equals operator.
    static boolean
    IntegerExtensions.operator_tripleEquals(int a, char b)
    The identity equals operator.
    static boolean
    IntegerExtensions.operator_tripleEquals(int a, double b)
    The identity equals operator.
    static boolean
    IntegerExtensions.operator_tripleEquals(int a, float b)
    The identity equals operator.
    static boolean
    IntegerExtensions.operator_tripleEquals(int a, int b)
    The identity equals operator.
    static boolean
    IntegerExtensions.operator_tripleEquals(int a, long b)
    The identity equals operator.
    static boolean
    IntegerExtensions.operator_tripleEquals(int a, short b)
    The identity equals operator.
    static boolean
    LongExtensions.operator_tripleEquals(long a, byte b)
    The identity equals operator.
    static boolean
    LongExtensions.operator_tripleEquals(long a, char b)
    The identity equals operator.
    static boolean
    LongExtensions.operator_tripleEquals(long a, double b)
    The identity equals operator.
    static boolean
    LongExtensions.operator_tripleEquals(long a, float b)
    The identity equals operator.
    static boolean
    LongExtensions.operator_tripleEquals(long a, int b)
    The identity equals operator.
    static boolean
    LongExtensions.operator_tripleEquals(long a, long b)
    The identity equals operator.
    static boolean
    LongExtensions.operator_tripleEquals(long a, short b)
    The identity equals operator.
    static boolean
    ObjectExtensions.operator_tripleEquals(Object a, Object b)
    The identity equals operator.
    static boolean
    ShortExtensions.operator_tripleEquals(short a, byte b)
    The identity equals operator.
    static boolean
    ShortExtensions.operator_tripleEquals(short a, char b)
    The identity equals operator.
    static boolean
    ShortExtensions.operator_tripleEquals(short a, double b)
    The identity equals operator.
    static boolean
    ShortExtensions.operator_tripleEquals(short a, float b)
    The identity equals operator.
    static boolean
    ShortExtensions.operator_tripleEquals(short a, int b)
    The identity equals operator.
    static boolean
    ShortExtensions.operator_tripleEquals(short a, long b)
    The identity equals operator.
    static boolean
    ShortExtensions.operator_tripleEquals(short a, short b)
    The identity equals operator.
    static int
    IntegerExtensions.operator_tripleGreaterThan(int a, int distance)
    The binary unsigned right shift operator.
    static long
    LongExtensions.operator_tripleGreaterThan(long a, int distance)
    The binary unsigned right shift operator.
    static boolean
    ByteExtensions.operator_tripleNotEquals(byte a, byte b)
    The identity not equals operator.
    static boolean
    ByteExtensions.operator_tripleNotEquals(byte a, char b)
    The identity not equals operator.
    static boolean
    ByteExtensions.operator_tripleNotEquals(byte a, double b)
    The identity not equals operator.
    static boolean
    ByteExtensions.operator_tripleNotEquals(byte a, float b)
    The identity not equals operator.
    static boolean
    ByteExtensions.operator_tripleNotEquals(byte a, int b)
    The identity not equals operator.
    static boolean
    ByteExtensions.operator_tripleNotEquals(byte a, long b)
    The identity not equals operator.
    static boolean
    ByteExtensions.operator_tripleNotEquals(byte a, short b)
    The identity not equals operator.
    static boolean
    CharacterExtensions.operator_tripleNotEquals(char a, byte b)
    The identity not equals operator.
    static boolean
    CharacterExtensions.operator_tripleNotEquals(char a, char b)
    The identity not equals operator.
    static boolean
    CharacterExtensions.operator_tripleNotEquals(char a, double b)
    The identity not equals operator.
    static boolean
    CharacterExtensions.operator_tripleNotEquals(char a, float b)
    The identity not equals operator.
    static boolean
    CharacterExtensions.operator_tripleNotEquals(char a, int b)
    The identity not equals operator.
    static boolean
    CharacterExtensions.operator_tripleNotEquals(char a, long b)
    The identity not equals operator.
    static boolean
    CharacterExtensions.operator_tripleNotEquals(char a, short b)
    The identity not equals operator.
    static boolean
    DoubleExtensions.operator_tripleNotEquals(double a, byte b)
    The identity not equals operator.
    static boolean
    DoubleExtensions.operator_tripleNotEquals(double a, char b)
    The identity not equals operator.
    static boolean
    DoubleExtensions.operator_tripleNotEquals(double a, double b)
    The identity not equals operator.
    static boolean
    DoubleExtensions.operator_tripleNotEquals(double a, float b)
    The identity not equals operator.
    static boolean
    DoubleExtensions.operator_tripleNotEquals(double a, int b)
    The identity not equals operator.
    static boolean
    DoubleExtensions.operator_tripleNotEquals(double a, long b)
    The identity not equals operator.
    static boolean
    DoubleExtensions.operator_tripleNotEquals(double a, short b)
    The identity not equals operator.
    static boolean
    FloatExtensions.operator_tripleNotEquals(float a, byte b)
    The identity not equals operator.
    static boolean
    FloatExtensions.operator_tripleNotEquals(float a, char b)
    The identity not equals operator.
    static boolean
    FloatExtensions.operator_tripleNotEquals(float a, double b)
    The identity not equals operator.
    static boolean
    FloatExtensions.operator_tripleNotEquals(float a, float b)
    The identity not equals operator.
    static boolean
    FloatExtensions.operator_tripleNotEquals(float a, int b)
    The identity not equals operator.
    static boolean
    FloatExtensions.operator_tripleNotEquals(float a, long b)
    The identity not equals operator.
    static boolean
    FloatExtensions.operator_tripleNotEquals(float a, short b)
    The identity not equals operator.
    static boolean
    IntegerExtensions.operator_tripleNotEquals(int a, byte b)
    The identity not equals operator.
    static boolean
    IntegerExtensions.operator_tripleNotEquals(int a, char b)
    The identity not equals operator.
    static boolean
    IntegerExtensions.operator_tripleNotEquals(int a, double b)
    The identity not equals operator.
    static boolean
    IntegerExtensions.operator_tripleNotEquals(int a, float b)
    The identity not equals operator.
    static boolean
    IntegerExtensions.operator_tripleNotEquals(int a, int b)
    The identity not equals operator.
    static boolean
    IntegerExtensions.operator_tripleNotEquals(int a, long b)
    The identity not equals operator.
    static boolean
    IntegerExtensions.operator_tripleNotEquals(int a, short b)
    The identity not equals operator.
    static boolean
    LongExtensions.operator_tripleNotEquals(long a, byte b)
    The identity not equals operator.
    static boolean
    LongExtensions.operator_tripleNotEquals(long a, char b)
    The identity not equals operator.
    static boolean
    LongExtensions.operator_tripleNotEquals(long a, double b)
    The identity not equals operator.
    static boolean
    LongExtensions.operator_tripleNotEquals(long a, float b)
    The identity not equals operator.
    static boolean
    LongExtensions.operator_tripleNotEquals(long a, int b)
    The identity not equals operator.
    static boolean
    LongExtensions.operator_tripleNotEquals(long a, long b)
    The identity not equals operator.
    static boolean
    LongExtensions.operator_tripleNotEquals(long a, short b)
    The identity not equals operator.
    static boolean
    ObjectExtensions.operator_tripleNotEquals(Object a, Object b)
    The identity not equals operator.
    static boolean
    ShortExtensions.operator_tripleNotEquals(short a, byte b)
    The identity not equals operator.
    static boolean
    ShortExtensions.operator_tripleNotEquals(short a, char b)
    The identity not equals operator.
    static boolean
    ShortExtensions.operator_tripleNotEquals(short a, double b)
    The identity not equals operator.
    static boolean
    ShortExtensions.operator_tripleNotEquals(short a, float b)
    The identity not equals operator.
    static boolean
    ShortExtensions.operator_tripleNotEquals(short a, int b)
    The identity not equals operator.
    static boolean
    ShortExtensions.operator_tripleNotEquals(short a, long b)
    The identity not equals operator.
    static boolean
    ShortExtensions.operator_tripleNotEquals(short a, short b)
    The identity not equals operator.
    IntegerExtensions.operator_upTo(int a, int b)
    The .. operator yields an IntegerRange.
    static <T> Iterable<T>
    IterableExtensions.reject(Iterable<T> unfiltered, Class<?> type)
    Returns the elements of unfiltered that are not instanceof type.
    static <T> Iterable<T>
    IterableExtensions.reject(Iterable<T> unfiltered, Functions.Function1<? super T,Boolean> predicate)
    Returns the elements of unfiltered that do not satisfy a predicate.
    static <T> Iterator<T>
    IteratorExtensions.reject(Iterator<T> unfiltered, Functions.Function1<? super T,Boolean> predicate)
    Returns the elements of unfiltered that do not satisfy a predicate.
    static <T> List<T>
    ListExtensions.reverseView(List<T> list)
    Provides a reverse view on the given list which is especially useful to traverse a list backwards in a for-each loop.
    static int
    IntegerExtensions.shiftLeft(int a, int distance)
    static long
    LongExtensions.shiftLeft(long a, int distance)
    static int
    IntegerExtensions.shiftRight(int a, int distance)
    static long
    LongExtensions.shiftRight(long a, int distance)
    static int
    IntegerExtensions.shiftRightUnsigned(int a, int distance)
    static long
    LongExtensions.shiftRightUnsigned(long a, int distance)
    int
    ExclusiveRange.size()
    Returns the number of elements in this ExclusiveRange.
    static <T> Iterator<T>
    IteratorExtensions.take(Iterator<T> iterator, int count)
    Returns a view on this iterator that provides at most the first count entries.
    static String
    StringExtensions.toFirstLower(String s)
    Returns the String s with an lower case first character.
    static String
    StringExtensions.toFirstUpper(String s)
    Returns the String s with an upper case first character.
    static <T> Iterable<T>
    IteratorExtensions.toIterable(Iterator<T> iterator)
    Wraps an Iterator in an Iterable.
    static <K, V> Map<K,V>
    MapExtensions.union(Map<? extends K,? extends V> left, Map<? extends K,? extends V> right)
    Merge the given maps.
    static Object
    Conversions.unwrapArray(Object value)
    Unwraps object to extract the original array if and only if object was previously created by Conversions.doWrapArray(Object).
    static Object
    Conversions.unwrapArray(Object value, Class<?> componentType)
    Unwraps object to extract the original array if and only if object was previously created by Conversions.doWrapArray(Object).
    IntegerRange.withStep(int step)
     
    static boolean
    BooleanExtensions.xor(boolean a, boolean b)
    A logical xor.
    Constructors in org.eclipse.xtext.xbase.lib with annotations of type Pure
    Modifier
    Constructor
    Description
     
    ExclusiveRange(int start, int end, boolean increment)
    Constructs a new ExclusiveRange object.
     
    IntegerRange(int start, int end)
    Constructs a new IntegerRange object.
     
    IntegerRange(int start, int end, int step)
    Constructs a new IntegerRange object.
     
    Pair(K k, V v)
    Creates a new instance with the given key and value.