Table of Contents

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 Mod

The 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 Mod

The 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

IMonkey[]

All IMonkeys of the given mods.

GetMonkeysAscending(Mod)

Gets the IMonkeys of the given mod in topological order.

public static IMonkey[] GetMonkeysAscending(this Mod mod)

Parameters

mod Mod

The mod to get the IMonkeys of.

Returns

IMonkey[]

The IMonkeys of the given mod in topological order.

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

IMonkey[]

All IMonkeys of the given mods in topological order.

GetMonkeysDescending(Mod)

Gets the IMonkeys of the given mod in reverse-topological order.

public static IMonkey[] GetMonkeysDescending(this Mod mod)

Parameters

mod Mod

The mod to get the IMonkeys of.

Returns

IMonkey[]

The IMonkeys of the given mod in reverse-topological order.

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

IMonkey[]

All IMonkeys of the given mod in reverse-topological order.

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 Mod

The 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 Mod

The 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 Mod

The mod to get the IMonkeys of.

comparer IComparer<IMonkey>

The IComparer<T> defining the order.

Returns

IMonkey[]

All IMonkeys of the given mod in the defined order.

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 Mod

The mod to get the IMonkeys of.

comparison Comparison<IMonkey>

The Comparison<T> defining the order.

Returns

IMonkey[]

The IMonkeys of the given mod in the defined order.

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

IMonkey[]

All IMonkeys of the given mods in the defined order.

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.

Returns

IMonkey[]

All IMonkeys of the given mods in the defined order.