Class: Valkyrie::Persistence::Fedora::OrderedList::TailSentinel

Inherits:
Sentinel
  • Object
show all
Defined in:
lib/valkyrie/persistence/fedora/ordered_list.rb

Instance Attribute Summary

Attributes inherited from Sentinel

#next, #parent, #prev

Instance Method Summary collapse

Methods inherited from Sentinel

#nil?, #rdf_subject

Constructor Details

#initialize(*args, **kwargs) ⇒ TailSentinel

Returns a new instance of TailSentinel.

Parameters:



169
170
171
172
# File 'lib/valkyrie/persistence/fedora/ordered_list.rb', line 169

def initialize(*args, **kwargs)
  super
  prev.next = self if prev&.next != self
end