search for: noemty

Displaying 2 results from an estimated 2 matches for "noemty".

Did you mean: noempty
2016 Dec 18
0
[PATCH v4 4/6] mllib: modify nsplit to take optional noempty and count arguments
...equal_stringlist ["A"; ""; ""; "B"] (String.nsplit "," "A,,,B"); + assert_equal_stringlist ["A"; "B"; "C"; "D"] (String.nsplit "<>" "A<>B<>C<>D"); + + (* noemty option *) + assert_equal_stringlist ["A"] (String.nsplit ~noempty:true "," ",A,"); + assert_equal_stringlist ["A"; "B"] (String.nsplit ~noempty:true "," "A,,,B"); + + (* count option *) + assert_equal_stringlist ["A&quot...
2016 Dec 18
9
[PATCH v4 0/6] Import directly from OVA tar archive if possible
v4: - rebase to more recent master - 1/6: using just "quote" instead of "Filename.quote" - 2/6: reformated block of code according to Richards suggestion - 4/6: added tests for nsplit v3: Addressed Pino's comments, namely: - input_ova.ml - untar takes list of paths - renamed untar_partial to untar_metadata - replaced uggly regex with nsplit - tests - test changes