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
procenumToString*(enums: openArray[enum]): string=mixin e
when e.low.ord >=0and e.high.ord <256:
result=newStringOfCap(enums.len)
else:
result=newStringOfCap(enums.len *2)
for e in enums:
result.add(e.enumToString)
The text was updated successfully, but these errors were encountered:
Fixing #8603 with f7c0e20 broke Arraymancer tensor concatenation due to the introduction of proc `|`*(a, b: typedesc): typedesc = discard in system.nim.
This should compile, but doesn't
The text was updated successfully, but these errors were encountered: