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