Skip to content
New issue

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

Support a feature to convert a method into a function or predicate #20

Closed
dakusui opened this issue Jul 23, 2020 · 0 comments
Closed

Support a feature to convert a method into a function or predicate #20

dakusui opened this issue Jul 23, 2020 · 0 comments
Assignees
Labels
enhancement New feature or request
Milestone

Comments

@dakusui
Copy link
Owner

dakusui commented Jul 23, 2020

Introduce a feature, where following example is possible.

  public void chainExample() {
    String var = "hello, world";

    requireArgument(
        var,
        transform(
            chain("substring", 7)
                .andThen(chain("toUpperCase")))
            .castAndCheck(chainp("equals", "WORLD"))
    );
  }

Instead of defining a printable function every time, directly create it from a method.

@dakusui dakusui self-assigned this Jul 23, 2020
@dakusui dakusui added the enhancement New feature or request label Jul 23, 2020
@dakusui dakusui added this to the 1.5 milestone Jul 23, 2020
@dakusui dakusui closed this as completed Oct 16, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant