Skip to content
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

Random::DEFAULT is deprecated since 3.0.0 #2487

Merged
merged 5 commits into from
Jun 8, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions refm/api/src/_builtin/Random
Original file line number Diff line number Diff line change
Expand Up @@ -353,9 +353,21 @@ C言語レベルで定義されている構造体MTの静的変数default_rand

--- DEFAULT -> Random
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

この行も3.0からは変更したほうが良さそうです。 ただ、"Random クラスオブジェクト" を書く方法があるのかちょっとわかりませんでした…。 -> Classと書いて文章で補足するのが良いかな🤔
よい記法を知っていたら誰か教えてほしいです

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

78df158-> Class に修正しました。クラスオブジェクトを書く方法は見つけられなかったです 😓


#@since 3.0.0
Ruby 3.0.0 から非推奨です。代わりに Random クラスオブジェクトを使ってください。
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#2118
非推奨になったことは古いバージョンのドキュメントでも明示しておきたいと思っているのですが、どうでしょうか?

サンプルコードなど詳細な説明は3.0から表示しつつ、非表示になった事実は2.xでも表示すると良いのかなと思っています


また、 Random::DEFAULT は Random クラスオブジェクトが返ります。

#@samplecode
Random::DEFAULT == Random # => true
Random.rand(10) # => 4
#@end

#@else
デフォルトの疑似乱数生成器です。
[[m:Random.rand]] や [[m:Kernel.#rand]] などで使用されます。

@see [[m:Random.srand]], [[m:Kernel.#srand]]
#@end
#@end
#@end