From c385c90148178ad38b17491d45f5dcc2cbe06c9c Mon Sep 17 00:00:00 2001 From: Andreas Grois Date: Fri, 4 Nov 2022 21:31:36 +0100 Subject: Remove obsolete comment about base conversion. It's done, so no point in keeping the TODO around :D --- src/passwordmaker/mod.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/passwordmaker/mod.rs b/src/passwordmaker/mod.rs index c9ec1e3..405d469 100644 --- a/src/passwordmaker/mod.rs +++ b/src/passwordmaker/mod.rs @@ -224,9 +224,6 @@ enum GetGraphemesIteratorInner { struct GetGraphemesIterator<'a> { graphemes : &'a Vec>, inner : GetGraphemesIteratorInner - //There really should be a better solution than storing those values. If we had arbitrary-length multiplication and subtraction maybe? - //like, finding the highest potence of divisor that still is smaller than the dividend, and dividing by that one to get the left-most digit, - //dividing the remainder of this operation by the next-lower potence of divisor to get the second digit, and so on? } impl<'a> Iterator for GetGraphemesIterator<'a> { -- cgit v1.2.3