|
Joutsen
v0.4.1
|
Extension methods to create enumerables that report progress of their iteration to the console. More...
Static Public Member Functions | |
| static ProgressableEnumerable< ItemType > | AsProgressable< ItemType > (this IList< ItemType > list) |
| Creates an enumerable that reports iteration progress to the console by using the default progress painter. More... | |
| static ProgressableEnumerable< ItemType > | AsProgressable< ItemType > (this IList< ItemType > list, ConsoleProgressPainter painter) |
| Creates an enumerable that reports iteration progress to the console by using a custom progress painter. More... | |
| static ProgressableEnumerable< ItemType > | AsProgressable< ItemType > (this IEnumerable< ItemType > enumerable, int numberOfItems) |
| Creates an enumerable that reports iteration progress to the console by using the default progress painter. More... | |
| static ProgressableEnumerable< ItemType > | AsProgressable< ItemType > (this IEnumerable< ItemType > enumerable, int numberOfItems, ConsoleProgressPainter painter) |
| Creates an enumerable that reports iteration progress to the console by using a custom progress painter. More... | |
Extension methods to create enumerables that report progress of their iteration to the console.
|
static |
Creates an enumerable that reports iteration progress to the console by using the default progress painter.
|
static |
Creates an enumerable that reports iteration progress to the console by using a custom progress painter.
| list | the list |
| painter | the progress painter |
|
static |
Creates an enumerable that reports iteration progress to the console by using the default progress painter.
| enumerable | the enumerable |
| numerOfItems | the number of items in the enumerable |
|
static |
Creates an enumerable that reports iteration progress to the console by using a custom progress painter.
| enumerable | the enumerable |
| numerOfItems | the number of items in the enumerable |
| painter | the progress painter |
1.8.13