class RubyKpi::Literal

The Literal class

Attributes

value[R]

accessor

Public Class Methods

new(value) click to toggle source

constructor

# File lib/DataStructures.rb, line 43
def initialize(value)
  @value = value
end

Public Instance Methods

to_str() click to toggle source

to string

# File lib/DataStructures.rb, line 48
def to_str()
  return @value
end