Interface StdVector<E>

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Interface Description
      static interface  StdVector.Factory<E>  
    • Method Summary

      All Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      default void add​(E value)  
      default E append()  
      long capacity()  
      void clear()  
      long data()  
      E get​(long index)  
      void push_back​(E e)  
      void reserve​(long size)  
      void resize​(long size)  
      void set​(long index, E value)  
      long size()  
      • Methods inherited from interface com.alibaba.fastffi.CXXPointer

        delete
      • Methods inherited from interface com.alibaba.fastffi.FFIPointer

        getAddress
      • Methods inherited from interface com.alibaba.fastffi.FFISettablePointer

        setAddress
    • Method Detail

      • size

        long size()
      • get

        E get​(long index)
      • set

        void set​(long index,
                 E value)
      • push_back

        void push_back​(E e)
      • add

        default void add​(E value)
      • append

        default E append()
      • clear

        void clear()
      • data

        long data()
      • capacity

        long capacity()
      • reserve

        void reserve​(long size)
      • resize

        void resize​(long size)