-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consistent naming of derived types in stdlib_bitset #332
Comments
Let's make this a real task to rename the |
Personally, I am not (yet) convinced by the consistency argument. Then again, if the
This will be equally annoying as all the renaming in Python scripts (e.g. |
See #225. There was overall strong support for using a suffix for derived type names. But if there is more support for not using a suffix (as was my preference as well), let's revisit it. I think there should be naming consistency within stdlib. |
I just re-read that thread, and the opinion I liked the most was from @wclodius2 :
(I would prefer to settle on Maybe two exceptions to suffixing with
I guess the convention to use |
I have decided to address issue #383 and while I am modifying the bitsets code I can also change the type names. Is there a consensus that |
So far we've been using a
_type
suffix for our derived types, but not 100% consistently.We have a
logger_type
, astring_type
, abitset_type
, but alsobitset_64
andbitset_large
types that extendbitset_type
.Should
bitset_64
andbitset_large
be renamed tobitset_64_type
andbitset_large_type
for consistency?For background context, we're using a suffix in derived type names to allow using the base name for the instance itself, for example:
The text was updated successfully, but these errors were encountered: