You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 22, 2021. It is now read-only.
Across languages, any identifier may be remapped from PascalCase or camelCase to a convention acceptable for an identifier class in its particular language. For example, Python remaps camelCase methods to snake_case. Go must remap camelCase to PascalCase on methods for them to be public. As a consequence, no name space can have two names that vary only by their case convention. This needs to be enforced to guarantee portability.
ThriftRW-node needs to coerce all identifiers to camelCase for purposes of eliminating name collisions for its internal lookup table.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Across languages, any identifier may be remapped from PascalCase or camelCase to a convention acceptable for an identifier class in its particular language. For example, Python remaps camelCase methods to snake_case. Go must remap camelCase to PascalCase on methods for them to be public. As a consequence, no name space can have two names that vary only by their case convention. This needs to be enforced to guarantee portability.
ThriftRW-node needs to coerce all identifiers to camelCase for purposes of eliminating name collisions for its internal lookup table.
The text was updated successfully, but these errors were encountered: