C# Class org.GraphDefined.Vanaheimr.Illias.Loops

Loop methods for integers.
Afficher le fichier Open project: Vanaheimr/Illias

Méthodes publiques

Méthode Description
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.

Method Details

Do() public static méthode

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.
Résultat void

Do() public static méthode

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.
Résultat void

Do() public static méthode

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.
Résultat void

Do() public static méthode

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.
Résultat void

Do() public static méthode

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.
Résultat void

Do() public static méthode

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.
Résultat void

Do() public static méthode

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.
Résultat void

Do() public static méthode

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.
Résultat void

Do() public static méthode

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.
Résultat void

Do() public static méthode

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.
Résultat void

Do() public static méthode

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.
Résultat void

Do() public static méthode

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.
Résultat void