Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
sorbet-runtime / lib / types / boolean.rb
Size: Mime:
# typed: strict
# frozen_string_literal: true

module T
  # T::Boolean is a type alias helper for the common `T.any(TrueClass, FalseClass)`.
  # Defined separately from _types.rb because it has a dependency on T::Types::Union.
  Boolean = T.type_alias {T.any(TrueClass, FalseClass)}
end