Packages

final class SizeCompareOps extends AnyVal

Operations for comparing the size of a collection to a test value.

These operations are implemented in terms of sizeCompare(Int).

Source
Iterable.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SizeCompareOps
  2. AnyVal
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def !=(size: Int): Boolean

    Tests if the size of the collection is not equal to some value.

    Tests if the size of the collection is not equal to some value.

    Annotations
    @inline()
  2. def <(size: Int): Boolean

    Tests if the size of the collection is less than some value.

    Tests if the size of the collection is less than some value.

    Annotations
    @inline()
  3. def <=(size: Int): Boolean

    Tests if the size of the collection is less than or equal to some value.

    Tests if the size of the collection is less than or equal to some value.

    Annotations
    @inline()
  4. def ==(size: Int): Boolean

    Tests if the size of the collection is equal to some value.

    Tests if the size of the collection is equal to some value.

    Annotations
    @inline()
  5. def >(size: Int): Boolean

    Tests if the size of the collection is greater than some value.

    Tests if the size of the collection is greater than some value.

    Annotations
    @inline()
  6. def >=(size: Int): Boolean

    Tests if the size of the collection is greater than or equal to some value.

    Tests if the size of the collection is greater than or equal to some value.

    Annotations
    @inline()
  7. def getClass(): Class[_ <: AnyVal]

    Returns the runtime class representation of the object.

    Returns the runtime class representation of the object.

    returns

    a class object corresponding to the runtime type of the receiver.

    Definition Classes
    AnyValAny
  8. val it: IterableOps[_, AnyConstr, _]