Class ModEnumerableExtensions
- Namespace
- MonkeyLoader
- Assembly
- MonkeyLoader.dll
Contains helpers to get the IMonkeys and IEarlyMonkeys of Mods.
public static class ModEnumerableExtensions
- Inheritance
-
ModEnumerableExtensions
- Inherited Members
Methods
GetEarlyMonkeys(IEnumerable<Mod>)
Gets the IEarlyMonkeys of all given mods
in no particular order.
public static IEarlyMonkey[] GetEarlyMonkeys(this IEnumerable<Mod> mods)
Parameters
mods
IEnumerable<Mod>The mods to get the IEarlyMonkeys of.
Returns
- IEarlyMonkey[]
All IEarlyMonkeys of the given
mods
.
GetEarlyMonkeysAscending(Mod)
Gets the IEarlyMonkeys of the given mod
in topological order.
public static IEarlyMonkey[] GetEarlyMonkeysAscending(this Mod mod)
Parameters
mod
ModThe mod to get the IEarlyMonkeys of.
Returns
- IEarlyMonkey[]
The IEarlyMonkeys of the given
mod
in topological order.
GetEarlyMonkeysAscending(IEnumerable<Mod>)
Gets the IEarlyMonkeys of all given mods
in topological order.
public static IEarlyMonkey[] GetEarlyMonkeysAscending(this IEnumerable<Mod> mods)
Parameters
mods
IEnumerable<Mod>The mods to get the IEarlyMonkeys of.
Returns
- IEarlyMonkey[]
All IEarlyMonkeys of the given
mods
in topological order.
GetEarlyMonkeysDescending(Mod)
Gets the IEarlyMonkeys of the given mod
in reverse-topological order.
public static IEarlyMonkey[] GetEarlyMonkeysDescending(this Mod mod)
Parameters
mod
ModThe mod to get the IEarlyMonkeys of.
Returns
- IEarlyMonkey[]
The IEarlyMonkeys of the given
mod
in reverse-topological order.
GetEarlyMonkeysDescending(IEnumerable<Mod>)
Gets the IEarlyMonkeys of all given mods
in reverse-topological order.
public static IEarlyMonkey[] GetEarlyMonkeysDescending(this IEnumerable<Mod> mods)
Parameters
mods
IEnumerable<Mod>The mods to get the IEarlyMonkeys of.
Returns
- IEarlyMonkey[]
All IEarlyMonkeys of the given
mods
in reverse-topological order.
GetMonkeys(IEnumerable<Mod>)
Gets the IMonkeys of all given mods
in no particular order.
public static IMonkey[] GetMonkeys(this IEnumerable<Mod> mods)
Parameters
mods
IEnumerable<Mod>The mods to get the IMonkeys of.
Returns
GetMonkeysAscending(Mod)
Gets the IMonkeys of the given mod
in topological order.
public static IMonkey[] GetMonkeysAscending(this Mod mod)
Parameters
Returns
GetMonkeysAscending(IEnumerable<Mod>)
Gets the IMonkeys of all given mods
in topological order.
public static IMonkey[] GetMonkeysAscending(this IEnumerable<Mod> mods)
Parameters
mods
IEnumerable<Mod>The mods to get the IMonkeys of.
Returns
GetMonkeysDescending(Mod)
Gets the IMonkeys of the given mod
in reverse-topological order.
public static IMonkey[] GetMonkeysDescending(this Mod mod)
Parameters
Returns
GetMonkeysDescending(IEnumerable<Mod>)
Gets the IMonkeys of all given mod
in reverse-topological order.
public static IMonkey[] GetMonkeysDescending(this IEnumerable<Mod> mod)
Parameters
mod
IEnumerable<Mod>The mods to get the IMonkeys of.
Returns
GetSortedEarlyMonkeys(Mod, IComparer<IEarlyMonkey>)
Gets the IEarlyMonkeys of the given mod
in the order defined by the given IComparer<T>.
public static IEarlyMonkey[] GetSortedEarlyMonkeys(this Mod mod, IComparer<IEarlyMonkey> comparer)
Parameters
mod
ModThe mod to get the IEarlyMonkeys of.
comparer
IComparer<IEarlyMonkey>The IComparer<T> defining the order.
Returns
- IEarlyMonkey[]
The IEarlyMonkeys of the given
mod
in the defined order.
GetSortedEarlyMonkeys(Mod, Comparison<IEarlyMonkey>)
Gets the IEarlyMonkeys of the given mod
in the order defined by the given Comparison<T>.
public static IEarlyMonkey[] GetSortedEarlyMonkeys(this Mod mod, Comparison<IEarlyMonkey> comparison)
Parameters
mod
ModThe mod to get the IEarlyMonkeys of.
comparison
Comparison<IEarlyMonkey>The Comparison<T> defining the order.
Returns
- IEarlyMonkey[]
The IEarlyMonkeys of the given
mod
in the defined order.
GetSortedEarlyMonkeys(IEnumerable<Mod>, IComparer<IEarlyMonkey>)
Gets the IEarlyMonkeys of all given mods
in the order defined by the given IComparer<T>.
public static IEarlyMonkey[] GetSortedEarlyMonkeys(this IEnumerable<Mod> mods, IComparer<IEarlyMonkey> comparer)
Parameters
mods
IEnumerable<Mod>The mods to get the IEarlyMonkeys of.
comparer
IComparer<IEarlyMonkey>The IComparer<T> defining the order.
Returns
- IEarlyMonkey[]
All IEarlyMonkeys of the given
mods
in the defined order.
GetSortedEarlyMonkeys(IEnumerable<Mod>, Comparison<IEarlyMonkey>)
Gets the IEarlyMonkeys of all given mods
in the order defined by the given Comparison<T>.
public static IEarlyMonkey[] GetSortedEarlyMonkeys(this IEnumerable<Mod> mods, Comparison<IEarlyMonkey> comparison)
Parameters
mods
IEnumerable<Mod>The mods to get the IEarlyMonkeys of.
comparison
Comparison<IEarlyMonkey>The Comparison<T> defining the order.
Returns
- IEarlyMonkey[]
All IEarlyMonkeys of the given
mods
in the defined order.
GetSortedMonkeys(Mod, IComparer<IMonkey>)
Gets the IMonkeys of the given mod
in the order defined by the given IComparer<T>.
public static IMonkey[] GetSortedMonkeys(this Mod mod, IComparer<IMonkey> comparer)
Parameters
mod
ModThe mod to get the IMonkeys of.
comparer
IComparer<IMonkey>The IComparer<T> defining the order.
Returns
GetSortedMonkeys(Mod, Comparison<IMonkey>)
Gets the IMonkeys of the given mod
in the order defined by the given Comparison<T>.
public static IMonkey[] GetSortedMonkeys(this Mod mod, Comparison<IMonkey> comparison)
Parameters
mod
ModThe mod to get the IMonkeys of.
comparison
Comparison<IMonkey>The Comparison<T> defining the order.
Returns
GetSortedMonkeys(IEnumerable<Mod>, IComparer<IMonkey>)
Gets the IMonkeys of all given mods
in the order defined by the given IComparer<T>.
public static IMonkey[] GetSortedMonkeys(this IEnumerable<Mod> mods, IComparer<IMonkey> comparer)
Parameters
mods
IEnumerable<Mod>The mods to get the IMonkeys of.
comparer
IComparer<IMonkey>The IComparer<T> defining the order.
Returns
GetSortedMonkeys(IEnumerable<Mod>, Comparison<IMonkey>)
Gets the IMonkeys of all given mods
in the order defined by the given Comparison<T>.
public static IMonkey[] GetSortedMonkeys(this IEnumerable<Mod> mods, Comparison<IMonkey> comparison)
Parameters
mods
IEnumerable<Mod>The mods to get the IMonkeys of.
comparison
Comparison<IMonkey>The Comparison<T> defining the order.