DEV Community

Discussion on: Understanding Ruby - to_proc and Function Interfaces

Collapse
 
vgoff profile image
Victor Goff

The heading "Standard Library Implementations of to_proc" shows core library methods, rather than standard library methods. It may cause confusion for those that go looking for these methods documentation in Standard Library instead of Core Library. See Standard Library on the official documentation site for Ruby docs.ruby-lang.org/en/master/doc/s...

Collapse
 
baweaver profile image
Brandon Weaver

That those two have distinct names is already confusing.

Collapse
 
vgoff profile image
Victor Goff

It does communicate that we have to include or require when needing "Standard Library" where "Core Library" is available with no additional action to take though. So it can be helpful communication.