C# Класс org.GraphDefined.Vanaheimr.Illias.Loops

Loop methods for integers.
Показать файл Открыть проект

Открытые методы

Метод Описание
Do ( Int32 Loops, System.Action Do ) : void

Loop for the given number of iterations while calling the given delegate.

Do ( Int32 Loops, Int32>.Action Do ) : void

Loop for the given number of iterations while calling the given delegate with the current iteration and total number of iterations as parameters.

Do ( Int32 Loops, Action Do ) : void

Loop for the given number of iterations while calling the given delegate with the current iteration as parameter.

Do ( System.Int64 Loops, System.Action Do ) : void

Loop for the given number of iterations while calling the given delegate.

Do ( System.Int64 Loops, Int64>.Action Do ) : void

Loop for the given number of iterations while calling the given delegate with the current iteration and total number of iterations as parameters.

Do ( System.Int64 Loops, Action Do ) : void

Loop for the given number of iterations while calling the given delegate with the current iteration as parameter.

Do ( UInt32 Loops, System.Action Do ) : void

Loop for the given number of iterations while calling the given delegate.

Do ( UInt32 Loops, UInt32>.Action Do ) : void

Loop for the given number of iterations while calling the given delegate with the current iteration and total number of iterations as parameters.

Do ( UInt32 Loops, Action Do ) : void

Loop for the given number of iterations while calling the given delegate with the current iteration as parameter.

Do ( System.UInt64 Loops, System.Action Do ) : void

Loop for the given number of iterations while calling the given delegate.

Do ( System.UInt64 Loops, UInt64>.Action Do ) : void

Loop for the given number of iterations while calling the given delegate with the current iteration and total number of iterations as parameters.

Do ( System.UInt64 Loops, Action Do ) : void

Loop for the given number of iterations while calling the given delegate with the current iteration as parameter.

Описание методов

Do() публичный статический Метод

Loop for the given number of iterations while calling the given delegate.
public static Do ( Int32 Loops, System.Action Do ) : void
Loops System.Int32 The number of iterations.
Do System.Action A delegate to call.
Результат void

Do() публичный статический Метод

Loop for the given number of iterations while calling the given delegate with the current iteration and total number of iterations as parameters.
public static Do ( Int32 Loops, Int32>.Action Do ) : void
Loops System.Int32 The number of iterations.
Do Int32>.Action A delegate to call.
Результат void

Do() публичный статический Метод

Loop for the given number of iterations while calling the given delegate with the current iteration as parameter.
public static Do ( Int32 Loops, Action Do ) : void
Loops System.Int32 The number of iterations.
Do Action A delegate to call.
Результат void

Do() публичный статический Метод

Loop for the given number of iterations while calling the given delegate.
public static Do ( System.Int64 Loops, System.Action Do ) : void
Loops System.Int64 The number of iterations.
Do System.Action A delegate to call.
Результат void

Do() публичный статический Метод

Loop for the given number of iterations while calling the given delegate with the current iteration and total number of iterations as parameters.
public static Do ( System.Int64 Loops, Int64>.Action Do ) : void
Loops System.Int64 The number of iterations.
Do Int64>.Action A delegate to call.
Результат void

Do() публичный статический Метод

Loop for the given number of iterations while calling the given delegate with the current iteration as parameter.
public static Do ( System.Int64 Loops, Action Do ) : void
Loops System.Int64 The number of iterations.
Do Action A delegate to call.
Результат void

Do() публичный статический Метод

Loop for the given number of iterations while calling the given delegate.
public static Do ( UInt32 Loops, System.Action Do ) : void
Loops System.UInt32 The number of iterations.
Do System.Action A delegate to call.
Результат void

Do() публичный статический Метод

Loop for the given number of iterations while calling the given delegate with the current iteration and total number of iterations as parameters.
public static Do ( UInt32 Loops, UInt32>.Action Do ) : void
Loops System.UInt32 The number of iterations.
Do UInt32>.Action A delegate to call.
Результат void

Do() публичный статический Метод

Loop for the given number of iterations while calling the given delegate with the current iteration as parameter.
public static Do ( UInt32 Loops, Action Do ) : void
Loops System.UInt32 The number of iterations.
Do Action A delegate to call.
Результат void

Do() публичный статический Метод

Loop for the given number of iterations while calling the given delegate.
public static Do ( System.UInt64 Loops, System.Action Do ) : void
Loops System.UInt64 The number of iterations.
Do System.Action A delegate to call.
Результат void

Do() публичный статический Метод

Loop for the given number of iterations while calling the given delegate with the current iteration and total number of iterations as parameters.
public static Do ( System.UInt64 Loops, UInt64>.Action Do ) : void
Loops System.UInt64 The number of iterations.
Do UInt64>.Action A delegate to call.
Результат void

Do() публичный статический Метод

Loop for the given number of iterations while calling the given delegate with the current iteration as parameter.
public static Do ( System.UInt64 Loops, Action Do ) : void
Loops System.UInt64 The number of iterations.
Do Action A delegate to call.
Результат void