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