Find Functions by Signature

Search for functions using input/output examples. Perfect for discovering the right function when you know what you want to achieve but not which function to use.

Search Results

Enum.chunk(1..4, 2) → [[1, 2], [3, 4]]
Enum.chunk_every(1..4, 2) → [[1, 2], [3, 4]]