comment out example scripts
This commit is contained in:
parent
19afdd8bea
commit
8312105427
1 changed files with 35 additions and 35 deletions
|
@ -92,17 +92,17 @@
|
|||
callback <f> Callback function
|
||||
ms <n> Number of milliseconds after which to insert a `setTimeout` call
|
||||
<script>
|
||||
var time = +new Date();
|
||||
Ox.nonblockingMap(
|
||||
Ox.range(1000000),
|
||||
function (value, index, array) {
|
||||
return +new Date() - time;
|
||||
},
|
||||
function(results) {
|
||||
Ox.print(results.length);
|
||||
},
|
||||
1000
|
||||
);
|
||||
// var time = +new Date();
|
||||
// Ox.nonblockingMap(
|
||||
// Ox.range(1000000),
|
||||
// function (value, index, array) {
|
||||
// return +new Date() - time;
|
||||
// },
|
||||
// function(results) {
|
||||
// Ox.print(results.length);
|
||||
// },
|
||||
// 1000
|
||||
// );
|
||||
</script>
|
||||
> Ox.nonblockingMap(Ox.range(100000), Ox.identity, function(r) { Ox.test(r.length, 100000); })
|
||||
undefined
|
||||
|
@ -161,18 +161,18 @@
|
|||
callback <f> Callback function
|
||||
results <a|o|s> Results
|
||||
<script>
|
||||
var time = +new Date();
|
||||
Ox.parallelMap(
|
||||
Ox.range(10),
|
||||
function (value, index, array, callback) {
|
||||
setTimeout(function() {
|
||||
callback(+new Date() - time);
|
||||
}, Ox.random(1000));
|
||||
},
|
||||
function(results) {
|
||||
Ox.print(results);
|
||||
}
|
||||
);
|
||||
// var time = +new Date();
|
||||
// Ox.parallelMap(
|
||||
// Ox.range(10),
|
||||
// function (value, index, array, callback) {
|
||||
// setTimeout(function() {
|
||||
// callback(+new Date() - time);
|
||||
// }, Ox.random(1000));
|
||||
// },
|
||||
// function(results) {
|
||||
// Ox.print(results);
|
||||
// }
|
||||
// );
|
||||
</script>
|
||||
> Ox.parallelMap(Ox.range(100000), Ox.noop, function(r) { Ox.test(r.length, 100000); })
|
||||
undefined
|
||||
|
@ -229,18 +229,18 @@
|
|||
callback <f> Callback function
|
||||
results <a|o|s> Results
|
||||
<script>
|
||||
var time = +new Date();
|
||||
Ox.serialMap(
|
||||
Ox.range(10),
|
||||
function (value, index, array, callback) {
|
||||
setTimeout(function() {
|
||||
callback(+new Date() - time);
|
||||
}, Ox.random(1000));
|
||||
},
|
||||
function(results) {
|
||||
Ox.print(results);
|
||||
}
|
||||
);
|
||||
// var time = +new Date();
|
||||
// Ox.serialMap(
|
||||
// Ox.range(10),
|
||||
// function (value, index, array, callback) {
|
||||
// setTimeout(function() {
|
||||
// callback(+new Date() - time);
|
||||
// }, Ox.random(1000));
|
||||
// },
|
||||
// function(results) {
|
||||
// Ox.print(results);
|
||||
// }
|
||||
// );
|
||||
</script>
|
||||
> Ox.serialMap(Ox.range(1000), Ox.noop, function(r) { Ox.test(r.length, 1000); })
|
||||
undefined
|
||||
|
|
Loading…
Reference in a new issue