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
typeBaseUint*=SomeUnsignedIntorbyteCt*[T] =distinct T
## Constant-Time wrapper## Only constant-time operations in particular the ternary operator equivalent## condition: if true: a else: b## are allowedCTBool*[T] =distinctrange[T(0)..T(1)]
## Constant-Time boolean wrappervar x: array[8, CTBool[Ct[uint32]]]
x[0] = (CTBool[Ct[uint32]])(1)
echo x.repr, "", typeof(x[0])
Error: call depth limit reached in a debug build (2000 function calls). You can change it with -d:nimCallDepthLimit=<int> but really try to avoid deep recursions instead.