Interface ProjectedAdjList<VID_T,​EDATA_T>

    • Method Detail

      • size

        @com.alibaba.fastffi.FFINameAlias("Size") long size()
        Size for this AdjList, i.e. number of nbrs.
        Returns:
        size.
      • empty

        @com.alibaba.fastffi.FFINameAlias("Empty") boolean empty()
        Check empty.
        Returns:
        true if no nbr.
      • notEmpty

        @com.alibaba.fastffi.FFINameAlias("NotEmpty") boolean notEmpty()
        Check no-empty.
        Returns:
        false if empty.
      • iterable

        default Iterable<ProjectedNbr<VID_T,​EDATA_T>> iterable()
        The iterator for ProjectedAdjList. You can use enhanced for loop instead of directly using this.
        Returns:
        the iterator.