brew/Library/Homebrew/cask/artifact_set.rb
2023-02-24 13:50:07 +00:00

23 lines
345 B
Ruby

# typed: true
# frozen_string_literal: true
require "set"
module Cask
# Sorted set containing all cask artifacts.
#
# @api private
class ArtifactSet < ::Set
def each(&block)
return enum_for(T.must(__method__)) { size } unless block
to_a.each(&block)
self
end
def to_a
super.sort
end
end
end