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