Stream.takeWhileOneOf and dropWhileOneOf()

This commit is contained in:
2024-01-27 13:26:38 -07:00
parent ba2079d96b
commit d1e94992d4
2 changed files with 44 additions and 2 deletions

View File

@@ -263,6 +263,43 @@ class Stream {
return Some(toReturn);
}
public function dropWhileOneOf(options:Array<String>) {
_dropWhileOneOf(options, false);
}
public function takeWhileOneOf(options:Array<String>) {
return _dropWhileOneOf(options, true);
}
function _dropWhileOneOf(options:Array<String>, take:Bool):Option<String> {
var taken = "";
var lengths = [for (option in options) option.length => true];
var optsMap = [for (option in options) option => true];
var nextIs = false;
do {
nextIs = false;
for (length => _ in lengths) {
var sample = content.substr(0, length);
if (optsMap.exists(sample)) {
nextIs = true;
if (take) {
taken += sample;
}
dropChars(length, take);
}
}
} while(nextIs);
if (taken.length == 0)
return None;
return Some(taken);
}
// If the stream starts with the opening delimiter, return the text between it and the closing delimiter.
// Allow either delimiter to appear immediately after escapeSeq,
// otherwise throw if open occurs again before close, and end on finding close

View File

@@ -971,5 +971,10 @@ From:[(assert false (+ \"false \" \"should \" \"have \" \"been \" \"true\"))]" m
(Assert.equals "" (stream1.recordTransaction Drop ->(stream1.takeRest)))
(Assert.equals "a b c d e f\n" (stream2.recordTransaction Take ->(stream2.takeRest)))
(Assert.equals "a b c d e f\n" (stream3.recordTransaction Drop ->(stream3.dropRest)))
(Assert.equals "a b c d e f\n" (stream4.recordTransaction Both ->(stream4.dropRest)))
))
(Assert.equals "a b c d e f\n" (stream4.recordTransaction Both ->(stream4.dropRest)))))
(function _testTakeWhileOneOf []
(let [stream (Stream.fromString " , , , ,abababababcab.ccab.")]
(Assert.equals " , , , ," (stream.expect "" ->(stream.takeWhileOneOf (.split ", " ""))))
(Assert.equals "ababababab" (stream.expect "" ->(stream.takeWhileOneOf (.split "ab" ""))))
(Assert.equals "cab.ccab" (stream.expect "" ->(stream.takeWhileOneOf ["cab" ".c"])))))