I'm sure it's a silly question to those who know...but I can't find an explanation of what it does or what it is.
CSV.open('data.csv', 'r') do |row|
p row
end
What does "p row" do?
|
I'm sure it's a silly question to those who know...but I can't find an explanation of what it does or what it is.
What does "p row" do? |
||||
|
|
|
p() is a Kernel method that write's Because Object mixes in the Kernel module, the
To find the docs for it, go to http://www.ruby-doc.org/core-1.8.7/index.html and look for the |
||||
|
|
|
The reason why it has such a cryptic name is so that you can quickly throw it into an expression and take it out again when debugging. (I guess it's a lot less useful now that Ruby is getting better and better "proper" debugging support.) Some alternatives to |
|||
|
|
|
Why not try it?
|
||||
|
The other option for documentation that you already have on your system is the ri command. At any time you can type: ri p or if p is defined in a lot of places (which it is) for central commands you can try ri Kernel.p. Other good bets are Array. or String. If you end up installing a bunch of gems this will slow down a lot but you can look up the fastri gem which speeds up the lookup process incredibly. |
|||
|
|