elm/core-js/Prelude.js

135 lines
4.1 KiB
JavaScript
Raw Normal View History

Value.addListener(document, 'elm_log', function(e) { console.log(e.value); });
Value.addListener(document, 'elm_title', function(e) {document.title = e.value;});
Value.addListener(document, 'elm_redirect', function(e) {
if (e.value.length > 0) { window.location = e.value; }
});
var Elm = Elm || {};
Elm.Prelude = function() {
var mod = function(x) { return function(y) {
var r = x % y;
var m = x==0 ? 0 : (y>0 ? (x>=0 ? r : r+y) : -mod(-x)(-y));
return m == y ? 0 : m;
}; };
var min = function(x) { return function(y) { return Math.min(x,y); }; };
var max = function(x) { return function(y) { return Math.max(x,y); }; };
var flip=function(f){return function(x){return function(y){return f(y)(x);};};};
var clamp = function(lo) { return function(hi) {
return function(x) { return Math.min(hi, Math.max(lo, x)); };
};
};
var curry = function(f) { return function(x) { return function(y) {
return f(["Tuple2",x,y]); }; };
};
var uncurry = function(f) { return function(p) {
if (p[0] !== "Tuple2") {
throw "Function was uncurry'd but was not given a pair.";
}
return f(p[1])(p[2]); };
};
var logBase=function(b){return function(x){return Math.log(x)/Math.log(b);};};
return {eq : Value.eq,
id : function(x) { return x; },
not : function(b) { return !b; },
fst : function(p) { return p[1]; },
snd : function(p) { return p[2]; },
rem : function(x) { return function(y) { return x % y; }; },
div : function(x) { return function(y) { return ~~(x / y); }; },
compare : function(x) { return function (y) {
x = (typeof x === "object") ? toText(x) : x;
y = (typeof y === "object") ? toText(y) : y;
return [ x === y ? 'EQ' : (x < y ? 'LT' : 'GT') ];
};
},
toFloat : function(x) { return x; },
round : function(n) { return Math.round(n); },
floor : function(n) { return Math.floor(n); },
ceiling : function(n) { return Math.ceil(n); },
truncate : function(n) { return ~~n; },
sqrt : Math.sqrt,
abs : Math.abs,
pi : Math.PI,
e : Math.E,
sin : Math.sin,
cos : Math.cos,
tan : Math.tan,
asin : Math.asin,
acos : Math.acos,
atan : Math.atan,
2012-10-04 05:49:09 +00:00
atan2 : function(y) { return function(x) { return Math.atan2(y,x); }; },
mod : mod,
min : min,
max : max,
flip : flip,
clamp : clamp,
curry : curry,
uncurry : uncurry,
logBase : logBase,
Just : Elm.Maybe.Just,
Nothing : Elm.Maybe.Nothing,
maybe : Elm.Maybe.maybe,
map : Elm.List.map,
filter : Elm.List.filter,
head : Elm.List.head,
tail : Elm.List.tail,
last : Elm.List.last,
length : Elm.List.length,
reverse : Elm.List.reverse,
foldr : Elm.List.foldr,
foldr1 : Elm.List.foldr1,
foldl : Elm.List.foldl,
foldl1 : Elm.List.foldl1,
and : Elm.List.and,
or : Elm.List.or,
all : Elm.List.all,
any : Elm.List.any,
sum : Elm.List.sum,
product : Elm.List.product,
concat : Elm.List.concat,
concatMap : Elm.List.concatMap,
maximum : Elm.List.maximum,
minimum : Elm.List.minimum,
scanl : Elm.List.scanl,
scanl1 : Elm.List.scanl1,
take : Elm.List.take,
drop : Elm.List.drop,
zip : Elm.List.zip,
unzip : Elm.List.unzip,
lift : Elm.Signal.lift,
lift2 : Elm.Signal.lift2,
lift3 : Elm.Signal.lift3,
lift4 : Elm.Signal.lift4,
foldp : Elm.Signal.foldp,
foldp1 : Elm.Signal.foldp1,
foldp_ : Elm.Signal.foldp_,
constant : Elm.Signal.constant,
count : Elm.Signal.count,
keepIf : Elm.Signal.keepIf,
dropIf : Elm.Signal.dropIf,
keepWhen : Elm.Signal.keepWhen,
dropWhen : Elm.Signal.dropWhen,
dropRepeats : Elm.Signal.dropRepeats,
sampleOn : Elm.Signal.sampleOn
};
}();
(function() {
var include = function(library) {
for (var i in library) {
Elm.Prelude[i] = library[i];
}
};
include (Elm.Graphics.Color);
include (Elm.Graphics.Text);
include (Elm.Graphics.Element);
show = Value.show;
}());