From bb44e06dea5b3a00585066063be00c4b3a976f70 Mon Sep 17 00:00:00 2001 From: timofey Date: Sat, 20 May 2023 05:11:11 +0000 Subject: [PATCH] HASH_SIZE section --- src/ch04/s00-concerns.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ch04/s00-concerns.md b/src/ch04/s00-concerns.md index ee9ae8a..783f192 100644 --- a/src/ch04/s00-concerns.md +++ b/src/ch04/s00-concerns.md @@ -4,3 +4,8 @@ * It's meant to be `Rc`d. * For proper indirection, there is `Point`. * It can be re-parsed. + +## `HASH_SIZE` as a global static constant +* Prevents using varied hash sizes. + * Prevents using dynamic hash sizes. +* Not a context-specific constant because associated `const`s in `const` context are unstable.