Beispiel #1
0
        public static RLStruct_TypeTableRecordList ToList <T>(T[] array, Func <T, RCStruct_TypeTableRecord> converter)
        {
            RLStruct_TypeTableRecordList result = new RLStruct_TypeTableRecordList();

            result.InnerFromArray(array, converter);
            return(result);
        }
Beispiel #2
0
        public static RLStruct_TypeTableRecordList FromRestList <T>(RestList <T> restList, Func <T, RCStruct_TypeTableRecord> converter)
        {
            RLStruct_TypeTableRecordList result = new RLStruct_TypeTableRecordList();

            result.InnerFromRestList(restList, converter);
            return(result);
        }
Beispiel #3
0
 public static T[] ToArray <T>(RLStruct_TypeTableRecordList recordlist, Func <RCStruct_TypeTableRecord, T> converter)
 {
     return(InnerToArray(recordlist, converter));
 }