You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Jest.test("works for an empty array",()=>Jest.Expect.toEqual(Jest.Expect.expect(Stdlib__Array.fold([],"",(prim0,prim1)=>prim0+prim1)),""));
1092
-
Jest.test("works for an ascociative operator",()=>Jest.Expect.toEqual(Jest.Expect.expect(Stdlib__Array.fold(Stdlib__Array.repeat(7,4),1,(prim0,prim1)=>Math.imul(prim0,prim1))),2401));
1085
+
Jest.test("works for an ascociative operator",()=>Jest.Expect.toEqual(Jest.Expect.expect(Stdlib__Array.fold(Stdlib__Array.repeat(7,4),1,(prim0,prim1)=>prim0*prim1|0)),2401));
1093
1086
Jest.test("works the order of arguments to `f` is important",()=>Jest.Expect.toEqual(Jest.Expect.expect(Stdlib__Array.fold([
Jest.test("returns transformed value from inside option arg",()=>Jest.Expect.toEqual(Jest.Expect.expect(Stdlib__Option.map(9,x=>Math.imul(x,x))),81));
48
+
Jest.test("returns transformed value from inside option arg",()=>Jest.Expect.toEqual(Jest.Expect.expect(Stdlib__Option.map(9,x=>x*x|0)),81));
49
49
Jest.test("returns transformed value from inside option arg",()=>Jest.Expect.toEqual(Jest.Expect.expect(Stdlib__Option.map(9,__x=>__x.toString())),"9"));
0 commit comments