2011-12-03 19:56:15 +00:00
|
|
|
target: reference/standard_lib
|
|
|
|
template: reference
|
2014-03-05 08:33:18 +00:00
|
|
|
title: MoonScript v0.2.5 - Standard Library
|
2011-12-11 07:50:50 +00:00
|
|
|
short_name: stdlib
|
2011-12-03 19:56:15 +00:00
|
|
|
--
|
|
|
|
|
|
|
|
The MoonScript installation comes with a small kernel of functions that can be
|
|
|
|
used to perform various common things.
|
|
|
|
|
|
|
|
The entire library is currently contained in a single object. We can bring this
|
|
|
|
`moon` object into scope by requiring `"moon"`.
|
|
|
|
|
2013-04-18 04:05:01 +00:00
|
|
|
```moon
|
|
|
|
require "moon"
|
|
|
|
-- `moon.p` is the debug printer
|
|
|
|
moon.p { hello: "world" }
|
|
|
|
```
|
2011-12-03 19:56:15 +00:00
|
|
|
|
|
|
|
If you prefer to just inject all of the functions into the current scope, you
|
|
|
|
can require `"moon.all"` instead. The following has the same effect as above:
|
|
|
|
|
2013-04-18 04:05:01 +00:00
|
|
|
```moon
|
|
|
|
require "moon.all"
|
|
|
|
p { hello: "world" }
|
|
|
|
```
|
2011-12-03 19:56:15 +00:00
|
|
|
|
|
|
|
All of the functions are compatible with Lua in addition to MoonScript, but
|
|
|
|
some of them only make sense in the context of MoonScript.
|
|
|
|
|
|
|
|
|
|
|
|
# MoonScript Standard Library
|
|
|
|
|
|
|
|
This is an overview of all the included functions.
|
|
|
|
All of the examples assume that the standard library has been included with
|
|
|
|
`require "moon.all"`.
|
|
|
|
|
|
|
|
## Printing Functions
|
|
|
|
|
|
|
|
### `p(arg)`
|
|
|
|
|
2011-12-11 07:50:50 +00:00
|
|
|
Prints a formatted version of an object. Excellent for inspecting the contents
|
2011-12-03 19:56:15 +00:00
|
|
|
of a table.
|
|
|
|
|
|
|
|
|
|
|
|
## Table Functions
|
|
|
|
|
|
|
|
### `run_with_scope(fn, scope, [args...])`
|
|
|
|
|
|
|
|
Mutates the environment of function `fn` and runs the function with any extra
|
2011-12-10 22:57:11 +00:00
|
|
|
arguments in `args...`. Returns the result of the function.
|
2011-12-03 19:56:15 +00:00
|
|
|
|
|
|
|
The environment of the function is set to a new table whose metatable will use
|
|
|
|
`scope` to look up values. `scope` must be a table. If `scope` does not have an
|
|
|
|
entry for a value, it will fall back on the original environment.
|
|
|
|
|
2013-04-18 04:05:01 +00:00
|
|
|
```moon
|
|
|
|
my_env = {
|
|
|
|
secret_function: -> print "shhh this is secret"
|
|
|
|
say_hi: -> print "hi there!"
|
|
|
|
}
|
2011-12-03 19:56:15 +00:00
|
|
|
|
2013-04-18 04:05:01 +00:00
|
|
|
say_hi = -> print "I am a closure"
|
2011-12-03 19:56:15 +00:00
|
|
|
|
2013-04-18 04:05:01 +00:00
|
|
|
fn = ->
|
|
|
|
secret_function!
|
|
|
|
say_hi!
|
2011-12-03 19:56:15 +00:00
|
|
|
|
2013-04-18 04:05:01 +00:00
|
|
|
run_with_scope fn, my_env
|
|
|
|
```
|
2011-12-03 19:56:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
Note that any closure values will always take precedence against global name
|
|
|
|
lookups in the environment. In the example above, the `say_hi` in the
|
|
|
|
environment has been shadowed by the local variable `say_hi`.
|
|
|
|
|
|
|
|
### `defaultbl([tbl,] fn)`
|
|
|
|
|
|
|
|
Sets the `__index` of table `tbl` to use the function `fn` to generate table
|
|
|
|
values when a missing key is looked up.
|
|
|
|
|
2011-12-10 22:57:11 +00:00
|
|
|
### `extend(arg1, arg2, [rest...])`
|
|
|
|
|
|
|
|
Chains together a series of tables by their metatable's `__index` property.
|
2013-09-09 06:51:28 +00:00
|
|
|
Overwrites the metatable of all objects except for the last with a new table
|
2011-12-10 22:57:11 +00:00
|
|
|
whose `__index` is set to the next table.
|
|
|
|
|
|
|
|
Returns the first argument.
|
|
|
|
|
2013-04-18 04:05:01 +00:00
|
|
|
```moon
|
|
|
|
a = { hello: "world" }
|
|
|
|
b = { okay: "sure" }
|
2011-12-10 22:57:11 +00:00
|
|
|
|
2013-04-18 04:05:01 +00:00
|
|
|
extend a, b
|
2011-12-10 22:57:11 +00:00
|
|
|
|
2013-04-18 04:05:01 +00:00
|
|
|
print a.okay
|
|
|
|
```
|
2011-12-10 22:57:11 +00:00
|
|
|
|
|
|
|
### `copy(tbl)`
|
|
|
|
|
|
|
|
Creates a shallow copy of a table, equivalent to:
|
|
|
|
|
2013-04-18 04:05:01 +00:00
|
|
|
```moon
|
|
|
|
copy = (arg) -> {k,v for k,v in pairs self}
|
|
|
|
```
|
2011-12-03 19:56:15 +00:00
|
|
|
|
|
|
|
## Class/Object Functions
|
|
|
|
|
2011-12-10 22:57:11 +00:00
|
|
|
### `is_object(value)`
|
|
|
|
|
|
|
|
Returns true if `value` is an instance of a MoonScript class, false otherwise.
|
|
|
|
|
|
|
|
### `type(value)`
|
|
|
|
|
|
|
|
If `value` is an instance of a MoonScript class, then return it's class object.
|
|
|
|
Otherwise, return the result of calling Lua's type method.
|
|
|
|
|
2013-04-18 04:05:01 +00:00
|
|
|
```moon
|
|
|
|
class MyClass
|
|
|
|
nil
|
2011-12-10 22:57:11 +00:00
|
|
|
|
2013-04-18 04:05:01 +00:00
|
|
|
x = MyClass!
|
|
|
|
assert type(x) == MyClass
|
|
|
|
```
|
2011-12-10 22:57:11 +00:00
|
|
|
|
|
|
|
### `bind_methods(obj)`
|
|
|
|
|
|
|
|
Takes an instance of an object, returns a proxy to the object whose methods can
|
|
|
|
be called without providing self as the first argument.
|
|
|
|
|
2013-04-18 04:05:01 +00:00
|
|
|
```moon
|
|
|
|
obj = SomeClass!
|
2011-12-10 22:57:11 +00:00
|
|
|
|
2013-04-18 04:05:01 +00:00
|
|
|
bound_obj = bind_methods obj
|
2011-12-10 22:57:11 +00:00
|
|
|
|
2013-04-18 04:05:01 +00:00
|
|
|
-- following have the same effect
|
|
|
|
obj\hello!
|
|
|
|
bound_obj.hello!
|
|
|
|
```
|
2011-12-10 22:57:11 +00:00
|
|
|
|
|
|
|
It lazily creates and stores in the proxy table the bound methods when they
|
|
|
|
are first called.
|
|
|
|
|
|
|
|
### `mixin(obj, class, [args...])`
|
|
|
|
|
|
|
|
Copies the methods of a class `cls` into the table `obj`, then calls the
|
|
|
|
constructor of the class with the `obj` as the receiver.
|
|
|
|
|
|
|
|
In this example we add the functionality of `First` to an instance of `Second`
|
|
|
|
without ever instancing `First`.
|
|
|
|
|
2013-04-18 04:05:01 +00:00
|
|
|
```moon
|
|
|
|
class First
|
|
|
|
new: (@var) =>
|
|
|
|
show_var: => print "var is:", @var
|
2011-12-10 22:57:11 +00:00
|
|
|
|
2013-04-18 04:05:01 +00:00
|
|
|
class Second
|
|
|
|
new: =>
|
|
|
|
mixin self, First, "hi"
|
2011-12-10 22:57:11 +00:00
|
|
|
|
2013-04-18 04:05:01 +00:00
|
|
|
a = Second!
|
|
|
|
a\show_var!
|
|
|
|
```
|
2011-12-10 22:57:11 +00:00
|
|
|
|
|
|
|
Be weary of name collisions when mixing in other classes, names will be
|
|
|
|
overwritten.
|
|
|
|
|
|
|
|
### `mixin_object(obj, other_obj, method_names)`
|
|
|
|
|
2013-06-08 07:13:03 +00:00
|
|
|
Inserts into `obj` methods from `other_obj` whose names are listed in
|
2011-12-10 22:57:11 +00:00
|
|
|
`method_names`. The inserted methods are bound methods that will run with
|
|
|
|
`other_obj` as the receiver.
|
|
|
|
|
2013-04-18 04:05:01 +00:00
|
|
|
```moon
|
|
|
|
class List
|
|
|
|
add: (item) => print "adding to", self
|
|
|
|
remove: (item) => print "removing from", self
|
2011-12-10 22:57:11 +00:00
|
|
|
|
2013-04-18 04:05:01 +00:00
|
|
|
class Encapsulation
|
|
|
|
new: =>
|
|
|
|
@list = List!
|
|
|
|
mixin_object self, @list, {"add", "remove"}
|
2011-12-10 22:57:11 +00:00
|
|
|
|
2013-04-18 04:05:01 +00:00
|
|
|
e = Encapsulation!
|
|
|
|
e.add "something"
|
|
|
|
```
|
2011-12-10 22:57:11 +00:00
|
|
|
|
|
|
|
### `mixin_table(a, b, [names])`
|
|
|
|
|
|
|
|
Copies the elements of table `b` into table `a`. If names is provided, then
|
|
|
|
only those names are copied.
|
2011-12-03 19:56:15 +00:00
|
|
|
|
|
|
|
## Misc Functions
|
|
|
|
|
2011-12-10 22:57:11 +00:00
|
|
|
### `fold(items, fn)`
|
|
|
|
|
|
|
|
Calls function `fn` repeatedly with the accumulated value and the current value
|
|
|
|
by iterating over `items`. The accumulated value is the result of the last call
|
|
|
|
to `fn`, or, in the base case, the first value. The current value is the value
|
|
|
|
being iterated over starting with the second item.
|
|
|
|
|
|
|
|
`items` is a normal array table.
|
|
|
|
|
|
|
|
For example, to sum all numbers in a list:
|
|
|
|
|
2013-04-18 04:05:01 +00:00
|
|
|
```moon
|
|
|
|
numbers = {4,3,5,6,7,2,3}
|
|
|
|
sum = fold numbers, (a,b) -> a + b
|
|
|
|
```
|
2011-12-03 19:56:15 +00:00
|
|
|
|
|
|
|
## Debug Functions
|
|
|
|
|
2011-12-10 22:57:11 +00:00
|
|
|
### `debug.upvalue(fn, key[, value])`
|
|
|
|
|
|
|
|
Gets or sets the value of an upvalue for a function by name.
|
2013-04-18 04:05:01 +00:00
|
|
|
|