--- old/src/jdk.incubator.vector/share/classes/jdk/incubator/vector/VectorMask.java 2019-04-26 14:51:55.385973400 -0700 +++ new/src/jdk.incubator.vector/share/classes/jdk/incubator/vector/VectorMask.java 2019-04-26 14:51:54.767190900 -0700 @@ -121,7 +121,7 @@ /** * Returns a mask where each lane is set or unset according to given - * {@code boolean} values + * {@code boolean} values. *

* For each mask lane, where {@code N} is the mask lane index, * if the given {@code boolean} value at index {@code N} is {@code true} @@ -131,6 +131,7 @@ * @param bits the given {@code boolean} values * @return a mask where each lane is set or unset according to the given {@code boolean} value * @throws IndexOutOfBoundsException if {@code bits.length < species.length()} + * @see Vector#maskFromValues(boolean...) */ @ForceInline public static VectorMask fromValues(VectorSpecies species, boolean... bits) { @@ -150,6 +151,7 @@ * @return the mask loaded from a {@code boolean} array * @throws IndexOutOfBoundsException if {@code offset < 0}, or * {@code offset > bits.length - species.length()} + * @see Vector#maskFromArray(boolean[], int) */ @ForceInline @SuppressWarnings("unchecked") @@ -167,6 +169,7 @@ * * @param species mask species * @return a mask where all lanes are set + * @see Vector#maskAllTrue() */ @ForceInline @SuppressWarnings("unchecked") @@ -181,6 +184,7 @@ * * @param species mask species * @return a mask where all lanes are unset + * @see Vector#maskAllFalse() */ @ForceInline @SuppressWarnings("unchecked")