Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions stdlib/builtin/builtin.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ interface _ToStr
def to_str: () -> String
end

interface _ToHash[K, V]
def to_hash: () -> Hash[K, V]
end

interface _ToProc
def to_proc: () -> untyped
end

interface _Each[out A, out B]
def each: { (A) -> void } -> B
end
Expand Down
Loading