Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F947330
fold.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
fold.js
View Options
if
(
!
dojo
.
_hasResource
[
"dojox.lang.tests.fold"
]){
//_hasResource checks added by build. Do not use _hasResource directly in your code.
dojo
.
_hasResource
[
"dojox.lang.tests.fold"
]
=
true
;
dojo
.
provide
(
"dojox.lang.tests.fold"
);
dojo
.
require
(
"dojox.lang.functional"
);
(
function
(){
var
df
=
dojox
.
lang
.
functional
,
a
=
df
.
arg
;
tests
.
register
(
"dojox.lang.tests.fold"
,
[
function
testFoldl1
(
t
){
t
.
assertEqual
(
df
.
foldl
([
1
,
2
,
3
],
"+"
,
0
),
6
);
},
function
testFoldl2
(
t
){
t
.
assertEqual
(
df
.
foldl1
([
1
,
2
,
3
],
"*"
),
6
);
},
function
testFoldl3
(
t
){
t
.
assertEqual
(
df
.
foldl1
([
1
,
2
,
3
],
"/"
),
1
/
6
);
},
function
testFoldl4
(
t
){
t
.
assertEqual
(
df
.
foldl1
([
1
,
2
,
3
],
df
.
partial
(
Math
.
max
,
a
,
a
)),
3
);
},
function
testFoldl5
(
t
){
t
.
assertEqual
(
df
.
foldl1
([
1
,
2
,
3
],
df
.
partial
(
Math
.
min
,
a
,
a
)),
1
);
},
function
testFoldr1
(
t
){
t
.
assertEqual
(
df
.
foldr
([
1
,
2
,
3
],
"+"
,
0
),
6
);
},
function
testFoldr2
(
t
){
t
.
assertEqual
(
df
.
foldr1
([
1
,
2
,
3
],
"*"
),
6
);
},
function
testFoldr3
(
t
){
t
.
assertEqual
(
df
.
foldr1
([
1
,
2
,
3
],
"/"
),
3
/
2
);
},
function
testFoldr4
(
t
){
t
.
assertEqual
(
df
.
foldr1
([
1
,
2
,
3
],
df
.
partial
(
Math
.
max
,
a
,
a
)),
3
);
},
function
testFoldr5
(
t
){
t
.
assertEqual
(
df
.
foldr1
([
1
,
2
,
3
],
df
.
partial
(
Math
.
min
,
a
,
a
)),
1
);
},
function
testScanl1
(
t
){
t
.
assertEqual
(
df
.
scanl
([
1
,
2
,
3
],
"+"
,
0
),
[
0
,
1
,
3
,
6
]);
},
function
testScanl2
(
t
){
t
.
assertEqual
(
df
.
scanl1
([
1
,
2
,
3
],
"*"
),
[
1
,
2
,
6
]);
},
function
testScanl3
(
t
){
t
.
assertEqual
(
df
.
scanl1
([
1
,
2
,
3
],
df
.
partial
(
Math
.
max
,
a
,
a
)),
[
1
,
2
,
3
]);
},
function
testScanl4
(
t
){
t
.
assertEqual
(
df
.
scanl1
([
1
,
2
,
3
],
df
.
partial
(
Math
.
min
,
a
,
a
)),
[
1
,
1
,
1
]);
},
function
testScanr1
(
t
){
t
.
assertEqual
(
df
.
scanr
([
1
,
2
,
3
],
"+"
,
0
),
[
6
,
5
,
3
,
0
]);
},
function
testScanr2
(
t
){
t
.
assertEqual
(
df
.
scanr1
([
1
,
2
,
3
],
"*"
),
[
6
,
6
,
3
]);
},
function
testScanr3
(
t
){
t
.
assertEqual
(
df
.
scanr1
([
1
,
2
,
3
],
df
.
partial
(
Math
.
max
,
a
,
a
)),
[
3
,
3
,
3
]);
},
function
testScanr4
(
t
){
t
.
assertEqual
(
df
.
scanr1
([
1
,
2
,
3
],
df
.
partial
(
Math
.
min
,
a
,
a
)),
[
1
,
2
,
3
]);
}
]);
})();
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Apr 26, 11:22 (1 d, 14 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
27569
Default Alt Text
fold.js (1 KB)
Attached To
rZEDHG ZedLegacy
Event Timeline
Log In to Comment