예제 #1
0
        public static RLTypeTableRecordList ToList <T>(T[] array, Func <T, RCTypeTableRecord> converter)
        {
            RLTypeTableRecordList result = new RLTypeTableRecordList();

            result.InnerFromArray(array, converter);
            return(result);
        }
예제 #2
0
        public static RLTypeTableRecordList FromRestList <T>(RestList <T> restList, Func <T, RCTypeTableRecord> converter)
        {
            RLTypeTableRecordList result = new RLTypeTableRecordList();

            result.InnerFromRestList(restList, converter);
            return(result);
        }
예제 #3
0
 public static T[] ToArray <T>(RLTypeTableRecordList recordlist, Func <RCTypeTableRecord, T> converter)
 {
     return(InnerToArray(recordlist, converter));
 }