Class: RBridge::SignR

Inherits:
Object
  • Object
show all
Defined in:
lib/r_bridge/r_bridge_ffi.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#valObject (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_sObject



436
437
438
# File 'lib/r_bridge/r_bridge_ffi.rb', line 436

def to_s
  return @val
end