Interface Internal.FloatList

    • Method Detail

      • getFloat

        float getFloat​(int index)
        Like List.get(int) but more efficient in that it doesn't box the returned value.
      • addFloat

        void addFloat​(float element)
        Like List.add(Object) but more efficient in that it doesn't box the element.
      • setFloat

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