Table of Contents

Class ConfigKeyRange

Namespace
MonkeyLoader.Configuration
Assembly
MonkeyLoader.dll

Contains some IConfigKeyRange<T> presets.

public static class ConfigKeyRange
Inheritance
ConfigKeyRange
Inherited Members

Methods

WithMax(byte)

Creates a new half-open range component with a maximum value.

public static IConfigKeyRange<byte> WithMax(byte max)

Parameters

max byte

The maximum value (inclusive).

Returns

IConfigKeyRange<byte>

A new half-open range component.

WithMax(decimal)

Creates a new half-open range component with a maximum value.

public static IConfigKeyRange<decimal> WithMax(decimal max)

Parameters

max decimal

The maximum value (inclusive).

Returns

IConfigKeyRange<decimal>

A new half-open range component.

WithMax(double)

Creates a new half-open range component with a maximum value.

public static IConfigKeyRange<double> WithMax(double max)

Parameters

max double

The maximum value (inclusive).

Returns

IConfigKeyRange<double>

A new half-open range component.

WithMax(short)

Creates a new half-open range component with a maximum value.

public static IConfigKeyRange<short> WithMax(short max)

Parameters

max short

The maximum value (inclusive).

Returns

IConfigKeyRange<short>

A new half-open range component.

WithMax(int)

Creates a new half-open range component with a maximum value.

public static IConfigKeyRange<int> WithMax(int max)

Parameters

max int

The maximum value (inclusive).

Returns

IConfigKeyRange<int>

A new half-open range component.

WithMax(long)

Creates a new half-open range component with a maximum value.

public static IConfigKeyRange<long> WithMax(long max)

Parameters

max long

The maximum value (inclusive).

Returns

IConfigKeyRange<long>

A new half-open range component.

WithMax(float)

Creates a new half-open range component with a maximum value.

public static IConfigKeyRange<float> WithMax(float max)

Parameters

max float

The maximum value (inclusive).

Returns

IConfigKeyRange<float>

A new half-open range component.

WithMin(byte)

Creates a new half-open range component with a minimum value.

public static IConfigKeyRange<byte> WithMin(byte min)

Parameters

min byte

The minimum value (inclusive).

Returns

IConfigKeyRange<byte>

A new half-open range component.

WithMin(decimal)

Creates a new half-open range component with a minimum value.

public static IConfigKeyRange<decimal> WithMin(decimal min)

Parameters

min decimal

The minimum value (inclusive).

Returns

IConfigKeyRange<decimal>

A new half-open range component.

WithMin(double)

Creates a new half-open range component with a minimum value.

public static IConfigKeyRange<double> WithMin(double min)

Parameters

min double

The minimum value (inclusive).

Returns

IConfigKeyRange<double>

A new half-open range component.

WithMin(short)

Creates a new half-open range component with a minimum value.

public static IConfigKeyRange<short> WithMin(short min)

Parameters

min short

The minimum value (inclusive).

Returns

IConfigKeyRange<short>

A new half-open range component.

WithMin(int)

Creates a new half-open range component with a minimum value.

public static IConfigKeyRange<int> WithMin(int min)

Parameters

min int

The minimum value (inclusive).

Returns

IConfigKeyRange<int>

A new half-open range component.

WithMin(long)

Creates a new half-open range component with a minimum value.

public static IConfigKeyRange<long> WithMin(long min)

Parameters

min long

The minimum value (inclusive).

Returns

IConfigKeyRange<long>

A new half-open range component.

WithMin(float)

Creates a new half-open range component with a minimum value.

public static IConfigKeyRange<float> WithMin(float min)

Parameters

min float

The minimum value (inclusive).

Returns

IConfigKeyRange<float>

A new half-open range component.