Interface Internal.DoubleList

    • Method Detail

      • getDouble

        double getDouble​(int index)
        Like List.get(int) but more efficient in that it doesn't box the returned value.
      • addDouble

        void addDouble​(double element)
        Like List.add(Object) but more efficient in that it doesn't box the element.
      • setDouble

        double setDouble​(int index,
                         double element)
        Like List.set(int, Object) but more efficient in that it doesn't box the element.