object OperatorIn extends Operator

Linear Supertypes
Operator, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. OperatorIn
  2. Operator
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. implicit class ArrayToListConverter extends AnyRef

Value Members

  1. def in(values: Array[String]): Boolean

    Returns boolean if element is in string.

    Returns boolean if element is in string. First condition is substring to look if is inside string, second condition is string.

    returns

    true if element is substring of string, false otherwise.

  2. def in(values: Array[AnyRef]): Boolean

    Returns boolean if element is in array.

    Returns boolean if element is in array. First condition is value to look if is inside array, second condition is array.

    returns

    true if element in array, false otherwise.