La expresión yield* es usada para delegar a otro generator u objeto iterable.
The yield* expression is used to delegate to another generator or iterable object.
El bucle for-of está diseñado para que podamos obtener el valor de un objeto iterable.
La expresión que retorna un objeto iterable
Si se usa el, el manejador del servicio requerirá, como valor de retorno, un objeto iterable que contenga a su vez objetos iterable, como por ejemplo una lista de listas.
If decorator is used, the service handler requires, as the return value, an iterable object of iterable objects, such as a list of lists.
Parámetros iterable Si un objeto iterable es pasado, todos sus elementos serán añadidos a un nuevo Set.
If an iterable object is passed, all of its elements will be added to the new Set.
Iterable es un array o cualquier otro objeto iterable cuyos elementos son pares clave-valor (arrays de 2 elementos).
Iterable is an Array or other iterable object whose elements are key-value pairs (2-element Arrays).
Otra característica importante de una cadena de Python es que, como una lista, es un objeto iterable
Another important characteristic of a Python string is that, like a list, it is an iterable object.
Este ejemplo itera sobre el objeto Iterable widgets, asignando, en orden, cada uno de los elementos a la variable w, y llamando al método display() de cada uno de ellos.
This example iterates over the Iterable object widgets, assigning each of its items in turn to the variable w, and then calling the Widget method display() for each item.
Parámetros arrayLike Objeto iterable para convertirlo en un array.
Parameters arrayLike An array-like or iterable object to convert to an array.
La expresión yield* es usada para delegar a otro generator u objeto iterable.
Delegate to another generator function or iterable object. []
En la interfaz de un objeto iterable encontramos métodos como.next() que permiten avanzar al elemento siguiente.
Iterables the something object in our example is called an iterator because it has the next() method on its interface.