Class TFloatStack



  • public class TFloatStack
    extends Object
    A stack of float primitives, backed by a TFloatArrayList.
    • Constructor Summary

      Constructors

      Constructor and Description
      TFloatStack()
      Creates a new TFloatStack instance with the default capacity.
      TFloatStack(int capacity)
      Creates a new TFloatStack instance with the specified capacity.
    • Method Summary

      Modifier and Type Method and Description
      void clear()
      Clears the stack, reseting its capacity to the default.
      float peek()
      Returns the value at the top of the stack.
      float pop()
      Removes and returns the value at the top of the stack.
      void push(float val)
      Pushes the value onto the top of the stack.
      void reset()
      Clears the stack without releasing its internal capacity allocation.
      int size()
      Returns the current depth of the stack.
      float[] toNativeArray()
      Copies the contents of the stack into a native array.
      void toNativeArray(float[] dest)
      Copies a slice of the list into a native array.
    • Constructor Detail

      • TFloatStack

        public TFloatStack()
        Creates a new TFloatStack instance with the default capacity.
      • TFloatStack

        public TFloatStack(int capacity)
        Creates a new TFloatStack instance with the specified capacity.
        Parameters:
        capacity - the initial depth of the stack
    • Method Detail

      • push

        public void push(float val)
        Pushes the value onto the top of the stack.
        Parameters:
        val - an float value
      • pop

        public float pop()
        Removes and returns the value at the top of the stack.
        Returns:
        an float value
      • peek

        public float peek()
        Returns the value at the top of the stack.
        Returns:
        an float value
      • size

        public int size()
        Returns the current depth of the stack.
      • clear

        public void clear()
        Clears the stack, reseting its capacity to the default.
      • reset

        public void reset()
        Clears the stack without releasing its internal capacity allocation.
      • toNativeArray

        public float[] toNativeArray()
        Copies the contents of the stack into a native array. Note that this will NOT pop them out of the stack.
        Returns:
        an float[] value
      • toNativeArray

        public void toNativeArray(float[] dest)
        Copies a slice of the list into a native array. Note that this will NOT pop them out of the stack.
        Parameters:
        dest - the array to copy into.