Util: Add delimiter support to the cut function

This commit is contained in:
Riyyi
2021-10-02 12:14:14 +02:00
parent 22082a515b
commit a04b5232f4
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ public:
System operator&&(System rhs);
System operator||(System rhs);
System& cut(uint32_t field);
System& cut(uint32_t field, char delimiter = '\t');
System& sort(bool unique = false);
System& tail(int32_t number, bool starting = false);
System& apply(LineCallback callback);