Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 988157
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T05:36:02+00:00 2026-05-16T05:36:02+00:00

I’m learning Ruby (using the Pickaxe book) and I’ve encountered a little confusion with

  • 0

I’m learning Ruby (using the Pickaxe book) and I’ve encountered a little confusion with a block operation that goes a little like this:

class CsvReader
  def initialize
    @book_in_stock = []
  end

  def read_in_csv_data(csv_file_name)
    CSV.foreach(csv_file_name, headers: true) do |row| # 1.
      @book_in_stock << BookinStock.new(row["ISBN"], row["Amount"]) # 2.
    end
  end
end

My confusion exists on the commented “#1” and “#2”, I don’t understand how we get “123” and “456” from a csv_file_name of “test.csv” containing the data:

"ISBN","Amount"
"123","456"

How is it that row[“ISBN”] knows that the next row corresponds to it? Do all blocks behave this way? What are they really called? Could someone explain them a little better?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T05:36:03+00:00Added an answer on May 16, 2026 at 5:36 am

    Blocks are a ruby idiom for describing a closure, or a block of code that has its own scope (it doesnt need to know about other parts of the code). Blocks have two styles, if the code goes on more than one line, you use the do syntax (given a data structure or some enumerable named @entries)

    @entries.each do |entry|
      #do something
    end
    

    if it is on one line you can simplify the block as such

    @entries.each{|entry| execute something here }

    explicitly, what either code block does is pass in one entry at a time, assigned to entry and do an operation over it. It is like an anonymous inner function.

    They are a little hard to understand at first, but really useful and all over the ruby world. We have blockitis sometimes.

    As a use case, consider that we want to do something to each value in an array.

    [1,2,3].map{|item| item+1} #=> takes each item in the array gets one added to it
    

    what isn’t so obvious is that this function returns an array [2,3,4] because the inner function takes care of the iteration over the data structure. This is much more convenient and declarative than having another function that operates over the array and another one yet to add one to each item.

    in the csv example you are taking each row and adding it to a data structure called @books_in_stock but its not as explicit, I think as the example I gave. Check out the Enumearble class http://apidock.com/ruby/Enumerable for many good examples of using blocks.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.