Are there any available functions for work with big integers?
I've found a module intarray, but functions from this module only work with integer
, not bigint
.
I miss a function for removing an item from an array. Something like the implementation of a "minus" operator in mentioned module:
int[] - int
(remove entries matching right argument from array)