Summary
    Sorts `list`, maintaining the order of any elements with an identical comparison
    (unlike the standard 
		System.Collections.Generic.List`1.Sort method).
    - Assembly
 - Weaver
.dll  - Namespace
 - Weaver
 - Containing Type
 - WeaverUtilities
 
Syntax
public static void StableInsertionSort<T>(IList<T> list) where T : IComparable<T>
	Type Parameters
| Name | Description | 
|---|---|
| T | 
Parameters
| Name | Type | Description | 
|---|---|---|
| list | IList | 
						
Return Value
| Type | Description | 
|---|---|
| void |