Method: RDF::Changeset.apply

Defined in:
lib/rdf/changeset.rb

.apply(mutable, **options) {|changes| ... } ⇒ void

This method returns an undefined value.

Applies a changeset to the given Mutable object.

Parameters:

Yields:

  • (changes)

Yield Parameters:

Since:

  • 2.0.0



45
46
47
# File 'lib/rdf/changeset.rb', line 45

def self.apply(mutable, **options, &block)
  self.new(&block).apply(mutable, **options)
end