Sha256: 8d5adf8fba84f6b77d3ea4052862774d47db1c32aaeab2b4412c03a8b8e901c7

Contents?: true

Size: 435 Bytes

Versions: 3

Compression:

Stored size: 435 Bytes

Contents

h = { a: :A, b: :B }

def foo(h)
  h.fetch(:a)     #=> :A | :B
end
def bar(h)
  h.fetch(:a, :C) #=> :A | :B | :C
end
def baz(h)
  n = nil
  [h.fetch(:a) do |k| #=> :A | :B | :C
    n = k #=> :A | :B
    :C
  end, n]
end

foo(h)
bar(h)
baz(h)

__END__
# Classes
class Object
  private
  def foo: ({a: :A, b: :B}) -> (:A | :B)
  def bar: ({a: :A, b: :B}) -> (:A | :B | :C)
  def baz: ({a: :A, b: :B}) -> ([:A | :B | :C, (:a | :b)?])
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
typeprof-0.9.2 smoke/hash-fetch.rb
typeprof-0.9.1 smoke/hash-fetch.rb
typeprof-0.9.0 smoke/hash-fetch.rb