class RDF::Node

Public Instance Methods

+(other) click to toggle source

Odd case of appending to a BNode identifier

# File lib/json/ld/extensions.rb, line 6
def +(other)
  Node.new(id + other.to_s)
end
valid_extended?() click to toggle source

Validate extended RDF

# File lib/json/ld/extensions.rb, line 30
def valid_extended?
  valid?
end