Interface Mutate1D.Fillable<N extends java.lang.Comparable<N>>

    • Method Detail

      • fillAll

        default void fillAll​(N value)
      • fillMatching

        default void fillMatching​(Access1D<?> values)

        Will fill the elements of [this] with the corresponding input values, and in the process (if necessary) convert the elements to the correct type:

        this(i) = values(i)
      • fillRange

        default void fillRange​(long first,
                               long limit,
                               N value)
      • fillRange

        default void fillRange​(long first,
                               long limit,
                               NullaryFunction<?> supplier)