<div dir="ltr"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div>Lambdas.  A SAM interface is one with a single abstract method, and
    we extract the function shape and use it as a target type for
    lambdas.  Similarly, a SAP interface is one with a single abstract
    pattern.  We can play the same game, except the shape is (match
    candidate) -> { pattern body that binds declared bindings }. 
    This allows APIs to be extend with patterns, such as a `match`
    method in streams:<br>
    <br>
          objects.stream().match(e -> e instanceof String s)....<br>
    <br>
    where Stream::match takes a SAP interface with a single binding,
    such as:<br>
    <br>
        interface Matchy<T, U> { <br>
            pattern(T that) p(U u);<br>
        }<br>
    ...<br>
        // in Stream<br>
        <U> Stream<U> match(Matchy<T,U> m);<br></div></blockquote><div><br></div><div>I see, thanks. What I was missing is that I thought a "pattern" method cannot exist without its pair. And that explains why wasn't the short "inverse" syntax chosen: Because the fact that the "pattern" method has the same name / types is just a coincidence from the point of view of the compiler (hopefully I'm not misunderstanding something again).</div></div></div>