Class: Rake::InvocationChain::EmptyInvocationChain
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
|
|
Instance Chain:
self,
::Rake::LinkedList::EmptyLinkedList,
::Rake::LinkedList,
Enumerable
|
|
Inherits: |
Rake::LinkedList::EmptyLinkedList
|
Defined in: | lib/rake/invocation_chain.rb |
Overview
Null object for an empty chain.
Constant Summary
::Rake::LinkedList - Inherited
Class Method Summary
::Rake::LinkedList::EmptyLinkedList - Inherited
::Rake::LinkedList - Inherited
.cons | Cons a new head onto the tail list. |
.empty | The standard empty list class for the given ::Rake::LinkedList class. |
.make | Make a list out of the given arguments. |
.new |
Instance Attribute Summary
::Rake::LinkedList::EmptyLinkedList - Inherited
::Rake::LinkedList - Inherited
Instance Method Summary
::Rake::LinkedList - Inherited
Constructor Details
This class inherits a constructor from Rake::LinkedList::EmptyLinkedList
Instance Method Details
#append(invocation)
[ GitHub ]# File 'lib/rake/invocation_chain.rb', line 45
def append(invocation) conj(invocation) end
#member?(obj) ⇒ Boolean
# File 'lib/rake/invocation_chain.rb', line 41
def member?(obj) false end
#to_s
[ GitHub ]# File 'lib/rake/invocation_chain.rb', line 49
def to_s "TOP" end