Merge branch 'master' into csv-empty-line

This commit is contained in:
phact
2020-05-18 10:58:46 -04:00
200 changed files with 1448 additions and 630 deletions

View File

@@ -16,7 +16,7 @@ public class LongFlow implements LongUnaryOperator {
private final LongUnaryOperator[] ops;
@Example({"StringFlow(Add(3),Mul(6))","Create an integer operator which adds 3 and multiplies the result by 6"})
@Example({"LongFlow(Add(3),Mul(6))","Create an integer operator which adds 3 and multiplies the result by 6"})
public LongFlow(LongUnaryOperator... ops) {
this.ops = ops;
}