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