Given a set containing one element, return the element.
require 'set' first = Set.new first << 1 element_from_set(first) ➞ 1
N/A