Method: RDF::NTriples::Reader.parse_object
- Defined in:
- lib/rdf/ntriples/reader.rb
.parse_object(input, **options) ⇒ RDF::Term
Reconstructs an RDF value from its serialized N-Triples representation.
129 130 131 |
# File 'lib/rdf/ntriples/reader.rb', line 129 def self.parse_object(input, **) parse_uri(input, **) || parse_node(input, **) || parse_literal(input, **) end |