diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-03-11 22:42:05 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-03-11 22:42:05 +0100 |
commit | ef03a1be92823c0ea7c90d89320ecc28d3e16775 (patch) | |
tree | a95d706ba04689e4a59cf740d7a0c260dc652e7c /examples | |
parent | Update README.md (diff) | |
download | blueshift-ef03a1be92823c0ea7c90d89320ecc28d3e16775.tar.gz blueshift-ef03a1be92823c0ea7c90d89320ecc28d3e16775.tar.bz2 blueshift-ef03a1be92823c0ea7c90d89320ecc28d3e16775.tar.xz |
function name to function mapping
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/lisp-esque | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/examples/lisp-esque b/examples/lisp-esque index f08c576..84d0129 100644 --- a/examples/lisp-esque +++ b/examples/lisp-esque @@ -507,3 +507,39 @@ def _standardise(mods, args): ''' pass +# Map function names to functions +functions = { 'monitors' : _monitors + , 'crtc' : _crtc + , 'size' : _size + , 'edid' : _edid + , 'coordinates' : _coordinates + , 'parse' : _parse + , 'read' : _read + , 'spawn' : _spawn + , 'include' : _include + , 'source' : _source + , 'eval' : _eval + , 'timepoints' : _timepoints + , 'points' : _points + , 'dayness' : _dayness + , 'method' : _method + , 'transfrom' : _transfrom + , 'negative' : _negative + , 'invert' : _invert + , 'temperature' : _temperature + , 'compose' : _compose + , 'current' : _current + , 'brightness' : _brightness + , 'contrast' : _contrast + , 'resolution' : _resolution + , 'gamma' : _gamma + , '\'gamma' : _pgamma + , 'clip' : _clip + , 'sigmoid' : _sigmoid + , 'limits' : _limits + , 'linearise' : _linearise + , 'icc' : _icc + , 'manipulate' : _manipulate + , 'standardise' : _standardise + } + |