Module: RData

Defined in:
lib/rdata/stack.rb,
lib/rdata.rb,
lib/rdata/queue.rb,
lib/rdata/version.rb

Overview

This is the Stack class. It allows easy implementation of stacks and use of their operations

# @stack = RData.Stack # @stack.operation # … etc …

Defined Under Namespace

Classes: Queue, Stack

Constant Summary collapse

VERSION =
"0.2.1"

Class Method Summary collapse

Class Method Details

.StackObject



5
6
7
# File 'lib/rdata.rb', line 5

def self.Stack
	Stack.new
end