Class VisitAll

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int THRESHOLD  
    • Constructor Summary

      Constructors 
      Constructor Description
      VisitAll()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static void visit​(double[] target, int first, int limit, java.util.function.DoubleConsumer visitor)  
      static void visit​(double[] target, java.util.function.DoubleConsumer visitor)  
      static void visitAll​(double[][] target, java.util.function.DoubleConsumer visitor)  
      static void visitColumn​(double[][] target, int row, int col, java.util.function.DoubleConsumer visitor)  
      static void visitDiagonal​(double[][] target, int row, int col, java.util.function.DoubleConsumer visitor)  
      static void visitRange​(double[][] target, int first, int limit, java.util.function.DoubleConsumer visitor)  
      static void visitRow​(double[][] target, int row, int col, java.util.function.DoubleConsumer visitor)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • THRESHOLD

        public static int THRESHOLD
    • Constructor Detail

      • VisitAll

        public VisitAll()
    • Method Detail

      • visit

        public static void visit​(double[] target,
                                 java.util.function.DoubleConsumer visitor)
      • visit

        public static void visit​(double[] target,
                                 int first,
                                 int limit,
                                 java.util.function.DoubleConsumer visitor)
      • visitAll

        public static void visitAll​(double[][] target,
                                    java.util.function.DoubleConsumer visitor)
      • visitColumn

        public static void visitColumn​(double[][] target,
                                       int row,
                                       int col,
                                       java.util.function.DoubleConsumer visitor)
      • visitDiagonal

        public static void visitDiagonal​(double[][] target,
                                         int row,
                                         int col,
                                         java.util.function.DoubleConsumer visitor)
      • visitRange

        public static void visitRange​(double[][] target,
                                      int first,
                                      int limit,
                                      java.util.function.DoubleConsumer visitor)
      • visitRow

        public static void visitRow​(double[][] target,
                                    int row,
                                    int col,
                                    java.util.function.DoubleConsumer visitor)