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 8672879
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T19:18:44+00:00 2026-06-12T19:18:44+00:00

Occasionally when writing Ruby I find myself wanting a pipe method, similar to tap

  • 0

Occasionally when writing Ruby I find myself wanting a pipe method, similar to tap but returning the result of calling the block with self as a parameter, like this:

class Object
  def pipe(&block)
    block.call(self)
  end
end

some_operation.pipe { |x| some_other_operation(x) }

..but so far I haven’t managed to find out what it’s called, if it exists. Does it exist?

If it doesn’t, I know I could monkey-patch object to add it but, y’know, that’s bad. Unless there’s a brilliant, guaranteed to never clash (and descriptive and short) name I could use for it…

  • 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-06-12T19:18:45+00:00Added an answer on June 12, 2026 at 7:18 pm

    This abstraction doesn’t exist in the core. I usually call it as, it’s short and declarative:

    class Object
      def as
        yield(self)
      end
    end
    
    "3".to_i.as { |x| x*x } #=> 9
    

    Raganwald usually mentions that abstraction in his posts, he calls it into.

    So, summing it up, some names: pipe, as, into, peg, thru.

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

Sidebar

Related Questions

I find myself writing delegates occasionally for really simple functions (take no arguments and
I find myself writing this class often in my python code when I need
I am writing a plugin for a application, occasionally a SIGSEGV would be throw
I'm writing a small program to calculate a physics problem but I'm having problems
Occasionally I find I need to process a list by inserting a new item
First some background : I'm writing a system that occasionally has to send out
I'm writing some documentation that will occasionally include C# or C++ code snippets. In
I am quite new to writing my own jquery functions and I find debugging
I work on an engineering team of 4 people, mostly writing javascript while occasionally
I'm writing an application that occasionally records the user's voice. During recording, I would

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.