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
るりまサイドの最新版では instance(data = $stdout, options = Hash.new)のようにハッシュを取る引数で書かれているのですが、実際のruby/csvのコードではdef instance(data = $stdout, **options)と、キーワード引数を取る形となっています。
instance(data = $stdout, options = Hash.new)
def instance(data = $stdout, **options)
csv 1.0時代まで戻ってもキーワード引数ですし、Rubyサイドは2.5でcsvライブラリのgem切り出しが行われているので、遅くともそれ以降はずっとキーワード引数だったようです。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
るりまサイドの最新版では
instance(data = $stdout, options = Hash.new)
のようにハッシュを取る引数で書かれているのですが、実際のruby/csvのコードではdef instance(data = $stdout, **options)
と、キーワード引数を取る形となっています。csv 1.0時代まで戻ってもキーワード引数ですし、Rubyサイドは2.5でcsvライブラリのgem切り出しが行われているので、遅くともそれ以降はずっとキーワード引数だったようです。
The text was updated successfully, but these errors were encountered: