RubyFlow The Ruby and Rails community linklog

Array#extract_if

A handy Array method that essentially finds and removes an item from an array in one go - returning that item. Surprisingly no core methods (delete drop etc) does this, nor does activesupport provide it.

Comments

“A handy Array method that essentially finds and removes an item from an array in one go”

Ruby on its own already has this (Array#reject!) :

@links.reject!{ link link.match /wikipedia.com/ }

Post a comment

You can use basic HTML markup (e.g. <a>) or Markdown.

As you are not logged in, you will be
directed via GitHub to signup or sign in