internal static OrderedVariableSizeListImpl GetInstance([CallerMemberName] string callerName = "")
        {
            var instance = new OrderedVariableSizeListImpl();

            InstanceFactory(ref instance, callerName);
            return(instance);
        }
 static partial void InstanceFactory(ref OrderedVariableSizeListImpl instance, [CallerMemberName] string callerName = "");