Class: Bparity::Formal::Transition
- Inherits:
-
Struct
- Object
- Struct
- Bparity::Formal::Transition
- Defined in:
- lib/bparity/formal/lts.rb
Instance Attribute Summary collapse
-
#from ⇒ Object
Returns the value of attribute from.
-
#input ⇒ Object
Returns the value of attribute input.
-
#output ⇒ Object
Returns the value of attribute output.
-
#to ⇒ Object
Returns the value of attribute to.
Instance Method Summary collapse
Instance Attribute Details
#from ⇒ Object
Returns the value of attribute from
29 30 31 |
# File 'lib/bparity/formal/lts.rb', line 29 def from @from end |
#input ⇒ Object
Returns the value of attribute input
29 30 31 |
# File 'lib/bparity/formal/lts.rb', line 29 def input @input end |
#output ⇒ Object
Returns the value of attribute output
29 30 31 |
# File 'lib/bparity/formal/lts.rb', line 29 def output @output end |
#to ⇒ Object
Returns the value of attribute to
29 30 31 |
# File 'lib/bparity/formal/lts.rb', line 29 def to @to end |
Instance Method Details
#to_h ⇒ Object
30 |
# File 'lib/bparity/formal/lts.rb', line 30 def to_h = { "from" => from, "input" => input, "output" => output, "to" => to } |