Warning: session_start(): open(/var/lib/php/sessions/sess_9ph5dcja7qi8m0rvci8omi4l1r, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
!include once #1027630 // Msg
cmodule NewEngineSpike > DynPrintLog {
L msgs;
start-thread {
if (empty(msgs))
setField(msgs := mainCruddieLog());
print("Have " + nMessages(msgs));
pnlStruct(takeFirst(2, msgs));
L msgs2 = whereFieldIsTrue fromUser(msgs);
new L props;
for (Msg msg : takeFirst(5, msgs2))
print(addAndReturn(props, ll(msg, "was understood correctly")));
props.add(print(ll(get(msgs2, 5),"is a wrong recognition")));
O pat = ll("$x", "was Understood correctly");
for (O prop : props) {
print(prop);
print(" => " + mapToStringWithSize(deepZip(pat, prop)));
}
}
Map deepZip(O inputA, O inputB) {
Map map = null;
if (eqOrEqic_gen(inputA, inputB))
map = emptyMap();
else if (inputA instanceof L && inputB instanceof L)
map = antiFilterMap eqOrEqic_gen(zipTwoListsToMap_strict(inputA/L, inputB/L));
if (map == null) null;
new Map map2;
for (O a, b : map)
if (a instanceof L && b instanceof L) {
Map subMap = deepZip(a, b);
if (subMap == null || !putAllStrictly(map2, subMap)) null;
} else
if (!strictPut(map2, a, b)) null;
ret map2;
}
}