Top Level Namespace

Defined Under Namespace

Modules: Comparable, Enumerable, GC, Integral, Kernel, Math, ObjectSpace Classes: Addrinfo, ArgumentError, Array, BasicSocket, Complex, EOFError, Enumerator, Exception, FalseClass, Fiber, File, FileTest, Fixnum, Float, FloatDomainError, FrozenError, Hash, IO, IOError, IPSocket, IndexError, Integer, KeyError, LocalJumpError, Method, Module, NameError, NilClass, NoMemoryError, NoMethodError, NotImplementedError, Numeric, Proc, Random, Range, RangeError, Rational, RegexpError, ScriptError, Socket, SocketError, StandardError, StopIteration, String, Struct, Symbol, SystemStackError, TCPServer, TCPSocket, Time, TrueClass, TypeError, UDPSocket, UNIXServer, UNIXSocket, UnboundMethod

Constant Summary collapse

STDIN =
IO.open(0, "r")
STDOUT =
IO.open(1, "w")
STDERR =
IO.open(2, "w")

Class Method Summary collapse

Class Method Details

.include(*modules) ⇒ Object



2
3
4
# File 'mrbgems/mruby-toplevel-ext/mrblib/toplevel.rb', line 2

def self.include (*modules)
  self.class.include(*modules)
end

.private(*methods) ⇒ Object



6
7
# File 'mrbgems/mruby-toplevel-ext/mrblib/toplevel.rb', line 6

def self.private(*methods)
end

.protected(*methods) ⇒ Object



8
9
# File 'mrbgems/mruby-toplevel-ext/mrblib/toplevel.rb', line 8

def self.protected(*methods)
end

.public(*methods) ⇒ Object



10
11
# File 'mrbgems/mruby-toplevel-ext/mrblib/toplevel.rb', line 10

def self.public(*methods)
end