El significado de «iterable» se describirá más adelante.
The meaning of "iterable" will be described later.
Los generadores son iteradores, un tipo de iterable que solo puede iterar una vez.
Generators are iterators, a kind of iterable you can only iterate over once.
En este ejercicio, solamente tendrás que especificar los argumentos iterable y reverse, pero no el argumento key.
In this exercise, you'll only have to specify iterable and reverse, not key.
Una lista es iterable; puedes recorrerla en un bucle
A list is iterable; you can loop over it
Si la promesa retornada es rechazada, es rechazada con la razón de la primera promesa rechazada en el iterable.
If the returned promise rejects, it is rejected with the reason from the first promise in the iterable that rejected.
Si la acción devuelve un iterable, el cliente recibirá un stream de datos generado por un bucle que recorre ese objeto.
If the action returns an iterable, this is used to loop and stream the data to the client.
Para cualquier tipo de secuencia iterable o clase, la función nativa iter() se utiliza para crear un objeto iterador.
For any iterable sequence type or class, the built-in function iter() is used to create an iterator object.
Iterable se puede usar como tipo de parámetro para indicar que una función requiere un conjunto de valores, pero que no importa la forma del dicho conjunto ya que se utiizará con foreach.
Iterable can be used as a parameter type to indicate that a function requires a set of values, but does not care about the form of the value set since it will be used with foreach.
Devuelve verdadero si cada elemento iterable después de la primera es estrictamente mayor que el elemento que le precedió, de acuerdo con este ordenamiento
Returns true if each element in iterable after the first is strictly greater than the element that preceded it, according to this ordering
Si nuestro próximo paso de la canalización combina los valores (en lugar de considerarlos de forma individual), puedes combinar el iterable de los números enteros para crear un único valor combinado que se sincronice con cada clave.
If our pipeline's next processing step combines the values (rather than considering them individually), you can combine the iterable of integers to create a single, merged value to be paired with each key.
El método extend() es un método de objeto de lista que espera un iterable y agrega sus valores a la lista.
The extend() method is a list object method that expects an iterable and adds its values to the list.
En concreto, gracias al nuevo método iterate(), puedes pasar una variable iterable (un array o un generador) y la barra se creará, avanzará y finalizará automáticamente.
Thanks to the new iterate() method, you can pass the iterable variable and the progress bar starts, advances and finishes automatically.
Si la promesa retornada es cumplida, lo hace con un arreglo de los valores de las promesas cumplidas en el mismo orden definido en el iterable.
If the returned promise fulfills, it is fulfilled with an array of the values from the fulfilled promises in the same order as defined in the iterable.