Comment by t-writescode
13 hours ago
keyword arguments are, internally, syntactic sugar over a hash. It probably doesn't easily work with typing the explicit values of a raw hash
13 hours ago
keyword arguments are, internally, syntactic sugar over a hash. It probably doesn't easily work with typing the explicit values of a raw hash
This hasn’t been true since Ruby 3.0. Keyword arguments are a core language feature with their own semantics.
Oh huh, TIL. Thanks for sharing!