< prev index next >

src/jdk.incubator.vector/share/classes/jdk/incubator/vector/AbstractShuffle.java

Print this page
rev 54658 : refactored mask and shuffle creation methods, moved classes to top-level

@@ -24,11 +24,11 @@
  */
 package jdk.incubator.vector;
 
 import java.util.function.IntUnaryOperator;
 
-abstract class AbstractShuffle<E> extends Vector.Shuffle<E> {
+abstract class AbstractShuffle<E> extends VectorShuffle<E> {
     static final IntUnaryOperator IDENTITY = i -> i;
 
     // Internal representation allows for a maximum index of 256
     // Values are masked by (species().length() - 1)
     final byte[] reorder;
< prev index next >