Class BitVector.IndexProcedure

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private int foundPos  
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private IndexProcedure()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean apply​(int index)
      Applies a procedure to an argument.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • foundPos

        private int foundPos
    • Constructor Detail

      • IndexProcedure

        private IndexProcedure()
    • Method Detail

      • apply

        public boolean apply​(int index)
        Description copied from interface: IntProcedure
        Applies a procedure to an argument. Optionally can return a boolean flag to inform the object calling the procedure.

        Example: forEach() methods often use procedure objects. To signal to a forEach() method whether iteration should continue normally or terminate (because for example a matching element has been found), a procedure can return false to indicate termination and true to indicate continuation.

        Specified by:
        apply in interface IntProcedure
        Parameters:
        index - element passed to the procedure.
        Returns:
        a flag to inform the object calling the procedure.