Merge pull request #140 from nosqlbench/longflow-example

longflow example
This commit is contained in:
Jonathan Shook 2020-05-14 09:50:40 -05:00 committed by GitHub
commit 2676eea576
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
}