public static RLCellFormatRecordList FromRestList<T>(RestList<T> restList, Func <T, RCCellFormatRecord> converter) {
			RLCellFormatRecordList result = new RLCellFormatRecordList();
			result.InnerFromRestList(restList, converter);
			return result;
		}