Class: RBridge::SignR
- Inherits:
-
Object
- Object
- RBridge::SignR
- Defined in:
- lib/r_bridge/r_bridge_ffi.rb
Instance Attribute Summary collapse
-
#val ⇒ Object
readonly
Returns the value of attribute val.
Instance Method Summary collapse
-
#initialize(str) ⇒ SignR
constructor
A new instance of SignR.
- #to_s ⇒ Object
Constructor Details
#initialize(str) ⇒ SignR
Returns a new instance of SignR.
432 433 434 |
# File 'lib/r_bridge/r_bridge_ffi.rb', line 432 def initialize( str ) @val = str end |
Instance Attribute Details
#val ⇒ Object (readonly)
Returns the value of attribute val.
430 431 432 |
# File 'lib/r_bridge/r_bridge_ffi.rb', line 430 def val @val end |
Instance Method Details
#to_s ⇒ Object
436 437 438 |
# File 'lib/r_bridge/r_bridge_ffi.rb', line 436 def to_s return @val end |