Hello,

Sign up to join our community!

Welcome Back,

Please login to your account!

Forgot Password,

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

So, I have different u64s representing timestamps. For each timestamp I want to save a BigUint. Whenever I call a method, I want to iterate through those timestamps chronologically and stop when I get to a timestamp that is higher than the current timestamp. For each iterated timestamp (that is smaller than the actual timestamp) I want to move the associated biguint somewhere else in memory (not relevant where to the use case, I think) and then delete that timestamp (and keep the order intact). For now, the only reasonable way I see this happening is: SetMapper for timestamps so they always keep their order (timestamps will be unique so it is fine) SingleValueMapper for each timestamp that stores the biguint. Is there any better way to do it?