Example #1
0
 public void HConcat(CSVData other)
 {
     other._columns.ForEach(key => AddColumn(key, other.GetColumnRaw(key)));
 }
Example #2
0
        public void AddColumns(List <string> keys, Func <RowType, List <string> > func)
        {
            CSVData toAdd = new CSVData(keys, MapRows(func));

            HConcat(toAdd);
        }