You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jena.apache.org by "Andy Seaborne (Jira)" <ji...@apache.org> on 2021/04/15 08:33:00 UTC

[jira] [Created] (JENA-2090) Add Graph.stream() and Graph.stream(s,p,o)

Andy Seaborne created JENA-2090:
-----------------------------------

             Summary: Add Graph.stream() and Graph.stream(s,p,o)
                 Key: JENA-2090
                 URL: https://issues.apache.org/jira/browse/JENA-2090
             Project: Apache Jena
          Issue Type: New Feature
    Affects Versions: Jena 4.0.0
            Reporter: Andy Seaborne
            Assignee: Andy Seaborne


{noformat}
	default Stream<Triple> stream(Node s, Node p, Node o) {
	    return Iter.asStream(find(s,p,o));
	}

	default Stream<Triple> stream() {
	    return stream(Node.ANY, Node.ANY, Node.ANY);
	}
{noformat}




--
This message was sent by Atlassian Jira
(v8.3.4#803005)