You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jena.apache.org by "ASF subversion and git services (Jira)" <ji...@apache.org> on 2021/04/22 18:11:00 UTC

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

    [ https://issues.apache.org/jira/browse/JENA-2090?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17329337#comment-17329337 ] 

ASF subversion and git services commented on JENA-2090:
-------------------------------------------------------

Commit 49dc227e6fe90fd8bd3e2f6c702388fd960c1b07 in jena's branch refs/heads/main from Andy Seaborne
[ https://gitbox.apache.org/repos/asf?p=jena.git;h=49dc227 ]

JENA-2090: Add Graph.stream


> 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
>          Components: Core
>    Affects Versions: Jena 4.0.0
>            Reporter: Andy Seaborne
>            Assignee: Andy Seaborne
>            Priority: Major
>             Fix For: Jena 4.1.0
>
>
> {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)