We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
今のcrsearch.js内では、定数を全体的に Symbol.for('名前') に依存している。これはどこで書いても重複しないという利点があるものの、グローバルな定数になってしまうため、同等なことを「Databaseクラスのインスタンスのユニーク性(crsearch.jsonの仕様を参照)」の範囲で解決できるように、Databaseクラスの内部で定数のファクトリを持つ実装に変更する。
Symbol.for('名前')
refs: cpprefjp/site#477
The text was updated successfully, but these errors were encountered:
ec35b6c
定数のファクトリは流石にヤバすぎると思ったので普通のstringにしました、WeakMapのキーに出来ないという問題があるけど……
Sorry, something went wrong.
Symbol類をstringに変更 ref: cpprefjp/crsearch#27
549af7a
cpprefjp/site#477 (comment)
No branches or pull requests
今のcrsearch.js内では、定数を全体的に
Symbol.for('名前')
に依存している。これはどこで書いても重複しないという利点があるものの、グローバルな定数になってしまうため、同等なことを「Databaseクラスのインスタンスのユニーク性(crsearch.jsonの仕様を参照)」の範囲で解決できるように、Databaseクラスの内部で定数のファクトリを持つ実装に変更する。refs: cpprefjp/site#477
The text was updated successfully, but these errors were encountered: