コード例 #1
0
		public static RLFontStyleRecordList ToList<T>(T[] array, Func <T, RCFontStyleRecord> converter) {
			RLFontStyleRecordList result = new RLFontStyleRecordList();
			result.InnerFromArray(array, converter);
			return result;
		}
コード例 #2
0
		public static RLFontStyleRecordList FromRestList<T>(RestList<T> restList, Func <T, RCFontStyleRecord> converter) {
			RLFontStyleRecordList result = new RLFontStyleRecordList();
			result.InnerFromRestList(restList, converter);
			return result;
		}
コード例 #3
0
		public static T[] ToArray<T>(RLFontStyleRecordList recordlist, Func<RCFontStyleRecord, T> converter) {
			return InnerToArray(recordlist, converter);
		}