Class: ActionDispatch::Journey::Nodes::Node
Relationships & Source Files | |
Extension / Inclusion / Inheritance Descendants | |
Subclasses:
|
|
Super Chains via Extension / Inclusion / Inheritance | |
Instance Chain:
|
|
Inherits: | Object |
Defined in: | actionpack/lib/action_dispatch/journey/nodes/node.rb |
Class Method Summary
- .new(left) ⇒ Node constructor
Instance Attribute Summary
- #cat? ⇒ Boolean readonly
- #group? ⇒ Boolean readonly
- #left (also: #symbol) rw
- #literal? ⇒ Boolean readonly
- #memo rw
- #star? ⇒ Boolean readonly
- #symbol? ⇒ Boolean readonly
- #terminal? ⇒ Boolean readonly
::Enumerable
- Included
#many? | Returns |
Instance Method Summary
::Enumerable
- Included
#compact_blank | Returns a new |
#exclude? | The negative of the |
#excluding | Returns a copy of the enumerable excluding the specified elements. |
#in_order_of | Returns a new |
#including | Returns a new array that includes the passed elements. |
#index_by | Convert an enumerable to a hash, using the block result as the key and the element as the value. |
#index_with | Convert an enumerable to a hash, using the element as the key and the block result as the value. |
#maximum | Calculates the maximum from the extracted elements. |
#minimum | Calculates the minimum from the extracted elements. |
#pick | Extract the given key from the first element in the enumerable. |
#pluck | Extract the given key from each element in the enumerable. |
#sole | Returns the sole item in the enumerable. |
#without | Alias for Enumerable#excluding. |
#as_json |
::ActiveSupport::EnumerableCoreExt::Constants
- Included
Constructor Details
.new(left) ⇒ Node
Instance Attribute Details
#cat? ⇒ Boolean
(readonly)
[ GitHub ]
# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 107
def cat?; false; end
#group? ⇒ Boolean
(readonly)
[ GitHub ]
# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 108
def group?; false; end
#left (rw) Also known as: #symbol
[ GitHub ]# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 72
attr_accessor :left, :memo
#literal? ⇒ Boolean
(readonly)
[ GitHub ]
# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 104
def literal?; false; end
#memo (rw)
[ GitHub ]# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 72
attr_accessor :left, :memo
#star? ⇒ Boolean
(readonly)
[ GitHub ]
# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 106
def star?; false; end
#symbol? ⇒ Boolean
(readonly)
[ GitHub ]
# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 103
def symbol?; false; end
#terminal? ⇒ Boolean
(readonly)
[ GitHub ]
# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 105
def terminal?; false; end
Instance Method Details
#each(&block)
[ GitHub ]#name
[ GitHub ]# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 95
def name -left.tr("*:", "") end
#to_dot
[ GitHub ]#to_s
[ GitHub ]#to_sym
[ GitHub ]# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 91
def to_sym name.to_sym end
#type
# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 99
def type raise NotImplementedError end