Take While

Take elements from the start of an array while a condition is true.

Code

General
arr.take_while { |x| x < threshold }

Parameters

Array

Take while less than threshold

Server

More Ruby Snippets