AllApplicationManualNameSummaryHelp

  • Documentation
    • Reference manual
    • Packages
      • SWI-Prolog Semantic Web Library 3.0
        • Two RDF APIs
          • library(semweb/rdf11): The RDF database
            • Enumerating and testing objects
              • rdf_subject/1
              • rdf_predicate/1
              • rdf_object/1
              • rdf_node/1
              • rdf_graph/1
              • rdf_literal/1
              • rdf_bnode/1
              • rdf_iri/1
              • rdf_name/1
              • rdf_term/1
              • rdf_is_iri/1
              • rdf_is_bnode/1
              • rdf_is_literal/1
              • rdf_is_name/1
              • rdf_is_object/1
              • rdf_is_predicate/1
              • rdf_is_subject/1
              • rdf_is_term/1
Availability::- use_module(library(semweb/rdf11)).
[semidet]rdf_is_bnode(@Term)
True if Term is an RDF blank node identifier.

A blank node is represented by an atom that starts with _:.

Success of this goal does not imply that the blank node is present in the database (see rdf_bnode/1 for that).

For backwards compatibility, atoms that are represented with an atom that starts with __ are also considered to be a blank node.

Availability::- use_module(library(semweb/rdf_db)).
Sourcerdf_is_bnode(+Id)
Tests if a resource is a blank node (i.e. is an anonymous resource). A blank node is represented as an atom that starts with _:. For backward compatibility reason, __ is also considered to be a blank node.
See also
rdf_bnode/1.