We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Preface Currently I have a snippet being weirdly formatted like this:
writeToFile('out/test.xlsx', attendance.byAreaAndWorker(null, null)).next(_ -> 'out/test.xlsx'.stat()) .next(s -> asserts.assert(s.size > 0)) .handle(asserts.handle);
Tried a few conditional settings but have no luck. I hope it could be nicer like so:
writeToFile('out/test.xlsx', attendance.byAreaAndWorker(null, null)) .next(_ -> 'out/test.xlsx'.stat()) .next(s -> asserts.assert(s.size > 0)) .handle(asserts.handle);
If there are some conditional tricks that can achieve that, it would be nice to know. Otherwise I suggest the following feature.
Feature Request
I wish to have method chaining wrapping based on the length of the "root" (i.e. the stuff before the first method call).
e.g. {"cond": "rootLength <= n", "value": 10}
{"cond": "rootLength <= n", "value": 10}
root.method().chaining(); // becomes: root.method() .chaining();
very.long.non.method.root.method().chaining(); // becomes: very.long.non.method.root .method() .chaining();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Preface
Currently I have a snippet being weirdly formatted like this:
Tried a few conditional settings but have no luck. I hope it could be nicer like so:
If there are some conditional tricks that can achieve that, it would be nice to know. Otherwise I suggest the following feature.
Feature Request
I wish to have method chaining wrapping based on the length of the "root" (i.e. the stuff before the first method call).
e.g.
{"cond": "rootLength <= n", "value": 10}
The text was updated successfully, but these errors were encountered: