Package com.alibaba.graphscope.ds
Interface DenseVertexSet.Factory<VID_T>
-
- Type Parameters:
VID_T
- vertex id inner representation type
- Enclosing interface:
- DenseVertexSet<VID_T>
public static interface DenseVertexSet.Factory<VID_T>
Factory for DenseVertexSet
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DenseVertexSet<VID_T>
create()
Create a new instance of DenseVertexSet.
-
-
-
Method Detail
-
create
DenseVertexSet<VID_T> create()
Create a new instance of DenseVertexSet. Remember to callDenseVertexSet.init(VertexRange)
to init the obj.The actual storage is in C++ memory.- Returns:
- a new instance.
-
-