get

operator fun <T> Validatable<Array<T>?>.get(index: Int): Validatable<T?>
operator fun <K, V> Validatable<Map<K, V>?>.get(index: K): Validatable<V?>


operator fun <T> Validatable<List<T>?>.get(index: Int): Validatable<T?>

Returns the element at the specified index in the list, wrapped in a Validatable.