Class AColIndex

    • Constructor Detail

      • AColIndex

        public AColIndex()
    • Method Detail

      • contains

        public boolean contains​(IColIndex a,
                                IColIndex b)
        Description copied from interface: IColIndex
        This contains method is not strict since it only verifies one element is contained from each a and b.
        Specified by:
        contains in interface IColIndex
        Parameters:
        a - one array to contain at least one value from
        b - another array to contain at least one value from
        Returns:
        if the other arrays contain values from this array
      • containsStrict

        public boolean containsStrict​(IColIndex a,
                                      IColIndex b)
        Description copied from interface: IColIndex
        This contains both a and b ... it is strict because it verifies all cells. Note it returns false if there are more elements in this than the sum of a and b.
        Specified by:
        containsStrict in interface IColIndex
        Parameters:
        a - one other array to contain
        b - another array to contain
        Returns:
        if this array contains both a and b