public static RLConditionalFormatStyleRecordList ToList<T>(T[] array, Func <T, RCConditionalFormatStyleRecord> converter) {
			RLConditionalFormatStyleRecordList result = new RLConditionalFormatStyleRecordList();
			result.InnerFromArray(array, converter);
			return result;
		}
		public static RLConditionalFormatStyleRecordList FromRestList<T>(RestList<T> restList, Func <T, RCConditionalFormatStyleRecord> converter) {
			RLConditionalFormatStyleRecordList result = new RLConditionalFormatStyleRecordList();
			result.InnerFromRestList(restList, converter);
			return result;
		}
		public static T[] ToArray<T>(RLConditionalFormatStyleRecordList recordlist, Func<RCConditionalFormatStyleRecord, T> converter) {
			return InnerToArray(recordlist, converter);
		}