sebcom

Results 2 issues of sebcom

I had encountered a strange behavior in EPPlus 6.0.3 with BigIntegers. By filling the sheet with **LoadFromCollection** where the list contains members of type **BigInteger** the corresponding columns in the...

Trying create equivalent array or slice with BitVec ``` const MAX_SIZE_SIEVE: usize = 1000_000_000; sieve: vec![false; MAX_SIZE_SIEVE].into_boxed_slice(), ``` by `sieve: bitvec![0; MAX_SIZE_SIEVE].into_boxed_slice(),` but then I get an stack overflow runtime...