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
def NullAllInd(l1:var[],val){
return = [Imperative]
{
i;
z = {};
for(i in GetKeys(l1) )
{
if(l1[i] == val)
{
0;
z = DSCore.List.AddItemToEnd(i,z);
}
}
return = z;
}};
NullAllInd({null,1,2,null,3,null,1,2}, 1)
should return {1, 6}
What did you see instead?
null
This is a pretty big issue, because whenever you install some of the most popular packages out there, something in imperative code becomes unusable. (i.e. Lunchbox disables Solid, Rhynamo disables Point, archi-lab.net disables List, etc...)
If I remove archi-lab, the code behaves as expected:
See also #7697. @dimven agree, its a major issue. For the uninitiated (most of whom are likely to be using Archi-lab given its popularity), I doubt they will be able to pinpoint the cause - the issue really warrants urgent attention.
Dynamo version
1.3 / 1.31
Operating system
Windows 10
What did you do?
Tried to resolve this issue:
dimven/SpringNodes#29
What did you expect to see?
NullAllInd({null,1,2,null,3,null,1,2}, 1)
should return
{1, 6}
What did you see instead?
null
This is a pretty big issue, because whenever you install some of the most popular packages out there, something in imperative code becomes unusable. (i.e. Lunchbox disables Solid, Rhynamo disables Point, archi-lab.net disables List, etc...)
If I remove archi-lab, the code behaves as expected:
@aparajit-pratap
The text was updated successfully, but these errors were encountered: