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

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

    Methods in org.eclipse.xtext.xbase.lib with annotations of type Inline
    Modifier and Type
    Method
    Description
    static <T> boolean
    CollectionExtensions.addAll(Collection<T> collection, Iterable<? extends T> elements)
    Adds all of the specified elements to the specified collection.
    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.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> Iterator<T>
    IteratorExtensions.filter(Iterator<?> unfiltered, Class<T> type)
    Returns all instances of class type in unfiltered.
    static <T> Iterable<T>
    IterableExtensions.flatten(Iterable<? extends Iterable<? extends T>> inputs)
    Combines multiple iterables into a single iterable.
    static <T> Iterator<T>
    IteratorExtensions.flatten(Iterator<? extends Iterator<? extends T>> inputs)
    Combines multiple iterators into a single iterator.
    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)
     
    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.
    static <T> List<T>
    CollectionExtensions.immutableCopy(List<? extends T> list)
    Returns an immutable copy of the specified list.
    static <K, V> Map<K,V>
    CollectionExtensions.immutableCopy(Map<? extends K,? extends V> map)
    Returns an immutable copy of the specified map.
    static <T> Set<T>
    CollectionExtensions.immutableCopy(Set<? extends T> set)
    Returns an immutable copy of the specified set.
    static <K, V> SortedMap<K,V>
    CollectionExtensions.immutableCopy(SortedMap<K,? extends V> map)
    Returns an immutable copy of the specified sorted map.
    static <T> SortedSet<T>
    CollectionExtensions.immutableCopy(SortedSet<T> set)
    Returns an immutable copy of the specified sorted set.
    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> 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 int[]
    ArrayLiterals.newIntArrayOfSize(int size)
     
    static int[][]
    ArrayLiterals.newIntArrayOfSize(int size0, int size1)
     
    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 <E> boolean
    CollectionExtensions.operator_add(Collection<? super E> collection, E value)
    The operator mapping from += to Collection.add(Object).
    static <E> boolean
    CollectionExtensions.operator_add(Collection<E> collection, Iterable<? extends E> newElements)
    The operator mapping from += to CollectionExtensions.addAll(Collection, Iterable).
    static <K, V> void
    MapExtensions.operator_add(Map<K,V> outputMap, Map<? extends K,? extends V> inputMap)
    Add the given entries of the input map into the output map.
    static <K, V> V
    MapExtensions.operator_add(Map<K,V> map, Pair<? extends K,? extends V> entry)
    Add the given pair into the map.
    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 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 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 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 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 byte
    ByteExtensions.operator_minusMinus(byte b)
    The postfix decrement operator.
    static Byte
    ByteExtensions.operator_minusMinus(Byte b)
    The postfix decrement operator.
    static char
    CharacterExtensions.operator_minusMinus(char c)
    The postfix decrement operator.
    static Character
    CharacterExtensions.operator_minusMinus(Character c)
    The postfix decrement operator.
    static double
    DoubleExtensions.operator_minusMinus(double d)
    The postfix decrement operator.
    static Double
    DoubleExtensions.operator_minusMinus(Double d)
    The postfix decrement operator.
    static float
    FloatExtensions.operator_minusMinus(float f)
    The postfix decrement operator.
    static Float
    FloatExtensions.operator_minusMinus(Float f)
    The postfix decrement operator.
    static int
    IntegerExtensions.operator_minusMinus(int i)
    The postfix decrement operator.
    static Integer
    IntegerExtensions.operator_minusMinus(Integer i)
    The postfix decrement operator.
    static long
    LongExtensions.operator_minusMinus(long l)
    The postfix decrement operator.
    static Long
    LongExtensions.operator_minusMinus(Long l)
    The postfix decrement operator.
    static short
    ShortExtensions.operator_minusMinus(short s)
    The postfix decrement operator.
    static Short
    ShortExtensions.operator_minusMinus(Short s)
    The postfix decrement 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 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 byte
    ByteExtensions.operator_plusPlus(byte b)
    The postfix increment operator.
    static Byte
    ByteExtensions.operator_plusPlus(Byte b)
    The postfix increment operator.
    static char
    CharacterExtensions.operator_plusPlus(char c)
    The postfix increment operator.
    static Character
    CharacterExtensions.operator_plusPlus(Character c)
    The postfix increment operator.
    static double
    DoubleExtensions.operator_plusPlus(double d)
    The postfix increment operator.
    static Double
    DoubleExtensions.operator_plusPlus(Double d)
    The postfix increment operator.
    static float
    FloatExtensions.operator_plusPlus(float f)
    The postfix increment operator.
    static Float
    FloatExtensions.operator_plusPlus(Float f)
    The postfix increment operator.
    static int
    IntegerExtensions.operator_plusPlus(int i)
    The postfix increment operator.
    static Integer
    IntegerExtensions.operator_plusPlus(Integer i)
    The postfix increment operator.
    static long
    LongExtensions.operator_plusPlus(long l)
    The postfix increment operator.
    static Long
    LongExtensions.operator_plusPlus(Long l)
    The postfix increment operator.
    static short
    ShortExtensions.operator_plusPlus(short s)
    The postfix increment operator.
    static Short
    ShortExtensions.operator_plusPlus(Short s)
    The postfix increment operator.
    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
    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 <E> boolean
    CollectionExtensions.operator_remove(Collection<? super E> collection, E value)
    The operator mapping from -= to Collection.remove(Object).
    static <E> boolean
    CollectionExtensions.operator_remove(Collection<E> collection, Collection<? extends E> newElements)
    static <K, V> V
    MapExtensions.operator_remove(Map<K,V> map, K key)
    Remove a key from the given map.
    static <K, V> boolean
    MapExtensions.operator_remove(Map<K,V> map, Pair<? extends K,? extends V> entry)
    Remove the given pair into the map.
    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> boolean
    CollectionExtensions.removeAll(Collection<T> collection, Collection<? extends T> elements)
    Removes all of the specified elements from the specified collection.
    static boolean
    ArrayExtensions.set(boolean[][] array, int index0, int index1, boolean value)
     
    static boolean
    ArrayExtensions.set(boolean[] array, int index, boolean value)
     
    static byte
    ArrayExtensions.set(byte[][] array, int index0, int index1, byte value)
     
    static byte
    ArrayExtensions.set(byte[] array, int index, byte value)
     
    static char
    ArrayExtensions.set(char[][] array, int index0, int index1, char value)
     
    static char
    ArrayExtensions.set(char[] array, int index, char value)
     
    static double
    ArrayExtensions.set(double[][] array, int index0, int index1, double value)
     
    static double
    ArrayExtensions.set(double[] array, int index, double value)
     
    static float
    ArrayExtensions.set(float[][] array, int index0, int index1, float value)
     
    static float
    ArrayExtensions.set(float[] array, int index, float value)
     
    static int
    ArrayExtensions.set(int[][] array, int index0, int index1, int value)
     
    static int
    ArrayExtensions.set(int[] array, int index, int value)
     
    static long
    ArrayExtensions.set(long[][] array, int index0, int index1, long value)
     
    static long
    ArrayExtensions.set(long[] array, int index, long value)
     
    static short
    ArrayExtensions.set(short[][] array, int index0, int index1, short value)
     
    static short
    ArrayExtensions.set(short[] array, int index, short value)
     
    static <T, E extends T>
    T
    ArrayExtensions.set(T[][] array, int index0, int index1, E value)
     
    static <T, E extends T>
    T
    ArrayExtensions.set(T[] array, int index, E value)
     
    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)
    static <T> List<T>
    IterableExtensions.sort(Iterable<T> iterable, Comparator<? super T> comparator)
    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 <T> Collection<T>
    CollectionExtensions.unmodifiableView(Collection<? extends T> collection)
    Returns an unmodifiable view of the specified collection.
    static <T> List<T>
    CollectionExtensions.unmodifiableView(List<? extends T> list)
    Returns an unmodifiable view of the specified list.
    static <K, V> Map<K,V>
    CollectionExtensions.unmodifiableView(Map<? extends K,? extends V> map)
    Returns an unmodifiable view of the specified map.
    static <T> Set<T>
    CollectionExtensions.unmodifiableView(Set<? extends T> set)
    Returns an unmodifiable view of the specified set.
    static <K, V> SortedMap<K,V>
    CollectionExtensions.unmodifiableView(SortedMap<K,? extends V> map)
    Returns an unmodifiable view of the specified sorted map.
    static <T> SortedSet<T>
    CollectionExtensions.unmodifiableView(SortedSet<T> set)
    Returns an unmodifiable view of the specified sorted set.
    static boolean
    BooleanExtensions.xor(boolean a, boolean b)
    A logical xor.