User contributions
From OpenEUO
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 20:34, 1 November 2010 (diff | hist) . . (+606) . . Nm Null (Created page with "== Description == null is a unique library defined value that is employed in place of nil in certain areas. It's best to pull null into the global environment if needed to a...")
- 20:26, 1 November 2010 (diff | hist) . . (+487) . . Nm True (Created page with "== Description == true is a lua keyword and valid value of type 'boolean'. While false is the opposite of true, nil is also considered false unless explicitly tested fo...") (current)
- 20:23, 1 November 2010 (diff | hist) . . (+52) . . m False (→Description) (current)
- 20:22, 1 November 2010 (diff | hist) . . (+55) . . m False (→Description)
- 20:21, 1 November 2010 (diff | hist) . . (+348) . . Nm False (Created page with "== Description == false is a lua keyword and valid value of type 'boolean'. While false is the opposite of true, nil is also considered false unless explicitly tested for. ...")
- 20:17, 1 November 2010 (diff | hist) . . (+25) . . m Type values (→See Also)
- 20:16, 1 November 2010 (diff | hist) . . (+46) . . m Type values
- 20:15, 1 November 2010 (diff | hist) . . (+27) . . m Documentation (→Constants)
- 20:06, 1 November 2010 (diff | hist) . . (+437) . . Nm Type values (Created page with "The lua type() function has fixed strings that it returns depending upon the type of value represented by its argument. These fixed strings are 'function', 'nil', 'number', 'str...")
- 19:59, 1 November 2010 (diff | hist) . . (+47) . . m Documentation
- 19:58, 1 November 2010 (diff | hist) . . (+308) . . m Nil (current)
- 19:48, 1 November 2010 (diff | hist) . . (+112) . . m Nil
- 19:46, 1 November 2010 (diff | hist) . . (-3) . . m Nil
- 19:46, 1 November 2010 (diff | hist) . . (+623) . . Nm Nil (Created page with "nil is a lua keyword and valid value and specifies something that does not exist. local a = 1 a = a + b --> 'Error: attempt to perform arithmetic on global 'b' (a nil val...")
- 19:33, 1 November 2010 (diff | hist) . . (+91) . . m Changing Default Error Reporting Mode
- 19:31, 1 November 2010 (diff | hist) . . (+1,584) . . Nm Changing Default Error Reporting Mode (Created page with "By default, every error (whether or not fatal) detected by the library at run time is logged into an internal error table and an error message is generated for the user. There a...")
- 19:10, 1 November 2010 (diff | hist) . . (+28) . . m ... (→Definition) (current)
- 19:09, 1 November 2010 (diff | hist) . . (+29) . . m ...
- 18:59, 1 November 2010 (diff | hist) . . (+1) . . m Simple lib soliton (→Description)
- 18:59, 1 November 2010 (diff | hist) . . (+1) . . m Simple lib soliton (→Usage Example)
- 18:58, 1 November 2010 (diff | hist) . . (+1) . . m Simple lib soliton (→Calling Convention)
- 18:52, 1 November 2010 (diff | hist) . . (0) . . m Simple lib soliton (→Description)
- 18:51, 1 November 2010 (diff | hist) . . (+31) . . m Simple lib soliton (→Description)
- 18:50, 1 November 2010 (diff | hist) . . (+31) . . m Including simplelib in a Project (→Intermediary Library Authors)
- 18:44, 1 November 2010 (diff | hist) . . (+84) . . m Including simplelib in a Project
- 18:42, 1 November 2010 (diff | hist) . . (+45) . . m Slverbosity (→Description)
- 18:40, 1 November 2010 (diff | hist) . . (+2) . . m Slverbosity (→Usage Example)
- 18:40, 1 November 2010 (diff | hist) . . (+2) . . m Slverbosity (→Calling Convention)
- 18:38, 1 November 2010 (diff | hist) . . (+1,004) . . Nm Slverbosity (Created page with "== Calling Convention == Call local o = sl.verbosity([flags]) Args flags is a string, valid values: 'off', 'lo', 'med', 'hi' Results o is a string, the old value of flags ==...")
- 17:38, 1 November 2010 (diff | hist) . . (+2,623) . . Nm Slredirect (Created page with "== Calling Convention == Call local o = sl.redirect(flags[,filename[,callback]]) Args flags is a string, valid members being 'c','i','n','p','r' filename is a string callback...")
- 16:57, 1 November 2010 (diff | hist) . . (+2) . . m Slimport (→Calling Convention)
- 16:50, 1 November 2010 (diff | hist) . . (-3) . . m Simple lib soliton (→Calling Convention)
- 16:50, 1 November 2010 (diff | hist) . . (+710) . . Nm Simple lib soliton (Created page with "== Calling Convention == Call local sl = simplelib_soliton__(...) Args ignored Results sl is a table, the unique interface to simplelib == Usage Example == if type(simpleli...")
- 16:37, 1 November 2010 (diff | hist) . . (+48) . . m Slimport (→Calling Convention)
- 16:35, 1 November 2010 (diff | hist) . . (+705) . . Nm Slimport (Created page with "== Calling Convention == Call sl.import(style) Args style is a string Results none == Usage Example == local sl = dofile(getinstalldir()..'/lib/simplelib.lua') sl.slimport(...")
- 16:24, 1 November 2010 (diff | hist) . . (+457) . . Nm Slversion (Created page with "== Calling Convention == Call local v = sl.slversion() Args none Results v is a real number == Usage Example == local sl = dofile(getinstalldir()..'/lib/simplelib.lua') loc...")
- 16:13, 1 November 2010 (diff | hist) . . (+431) . . Nm Importing Library Names Into Global Environment (Created page with "All top level library methods can be imported into the global environment _G, though this usage is strongly discouraged, especially for authors of intermediate libraries. ...")
- 16:12, 1 November 2010 (diff | hist) . . (+190) . . m Including simplelib in a Project (→Dofile Call)
- 16:11, 1 November 2010 (diff | hist) . . (-175) . . m Including simplelib in a Project (→Intermediary Library Authors)
- 16:10, 1 November 2010 (diff | hist) . . (+1,122) . . Nm Including simplelib in a Project (Created page with "== Dofile Call == The simplelib.lua file belongs in the lib/ subdirectory of the openeuo root directory. To use simplelib, include the following line at the top of the dependent...")
- 15:35, 1 November 2010 (diff | hist) . . (+362) . . m Tuple (→Definition) (current)
- 15:27, 1 November 2010 (diff | hist) . . (+501) . . Nm Tuple (Created page with "== Definition == A tuple is an ordered sequence of elements. Functions in lua can return more than one value at a time. E.g., local b = function(...) local a = {...} ...")
- 15:25, 1 November 2010 (diff | hist) . . (+385) . . Nm ... (Created page with "== Definition == Elipses in Lua represent variadic arguments. In documentation, they stand for zero or more repeating values. == See Also == * Select * String.len ...")
- 14:47, 1 November 2010 (diff | hist) . . (+102) . . m Str (→See Also)
- 14:24, 1 November 2010 (diff | hist) . . (+24) . . m Simplelib (→Library Method Tables)
- 14:24, 1 November 2010 (diff | hist) . . (+61) . . m Str (→Description)
- 14:21, 1 November 2010 (diff | hist) . . (+10) . . m Simplelib (→Library Initialization)
- 13:53, 1 November 2010 (diff | hist) . . (-2) . . m Str (→Usage Example)
- 13:52, 1 November 2010 (diff | hist) . . (+503) . . N Str (Initial str page)
- 13:35, 1 November 2010 (diff | hist) . . (-1) . . m Simplelib (→Purpose and Notes)
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)